美文网首页
在鼠标悬停在某个表格行的上方时改变该行文本效果

在鼠标悬停在某个表格行的上方时改变该行文本效果

作者: HeroMeikong | 来源:发表于2017-10-11 16:44 被阅读0次
    function highlightRows() {
        if(!document.getElementsByTagName) return false;
        var rows = document.getElementsByTagName("tr");
        for(var i=0;i<rows.length;i++){
            rows[i].onmouseover =  function () {
                this.style.fontWeight = "bold";
            }
            rows[i].onmouseout = function () {
                this.style.fontWeight = "normal";
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:在鼠标悬停在某个表格行的上方时改变该行文本效果

          本文链接:https://www.haomeiwen.com/subject/ervwyxtx.html