为了账号安全,请及时绑定邮箱和手机立即绑定

 为什么鼠标滑过颜色这么写不对啊,划过的时候整个表格都变色了


//鼠标滑过的背景颜色
     function onload2(){
        var table=document.getElementById("table");
        var trs=table.childNodes;
          for(var i=0;i<trs.length;i++)
          {
              trs[i].onmouseover=function()
              {
                  //alert(trs.length);
                  this.style.backgroundColor="#f2f2f2";
              }
              trs[i].onmouseout=function()
              {
                  this.style.backgroundColor="";
              }
          }
    }

正在回答

1 回答

var trs=table.childNodes;  这一句换成 var trs = table.getElementsByTagName("tr");   我给不你了你完美的解释! 

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

 为什么鼠标滑过颜色这么写不对啊,划过的时候整个表格都变色了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信