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

这两种为什么方法第二种不行呢?

       window.onload = function(){

       

       var j=document.getElementsByTagName('tr');

                 var tr=document.getElementsByTagName("tr");

          for(var i= 0;i<tr.length;i++)

          {

                 bgcChange(tr[i]);

          }

     // 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。

      }         

   function bgcChange(obj)

     {

        obj.onmouseover=function(){

            obj.style.backgroundColor="#f2f2f2";

        }

        obj.onmouseout=function(){

            obj.style.backgroundColor="#fff";

        }

   }

这是下边同学代码里的,没问题。

       window.onload = function(){

       

       var j=document.getElementsByTagName('tr');

                 var tr=document.getElementsByTagName("tr");

          for(var i= 0;i<tr.length;i++)

          {

             tr[i].onmouseover=function(){

            tr[i].style.backgroundColor="#f2f2f2";

        }

       tr[i].onmouseout=function(){

            tr[i].style.backgroundColor="#fff";

        }

          }

     // 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。

      }

这是第二种,为什么一定要出来一个function();呢,放在一起怎么就不行了?

正在回答

1 回答

没问题吧

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

洪山 提问者

有问题,运行之后只有第三行有效果,其他行都不行。。。
2016-11-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这两种为什么方法第二种不行呢?

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