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

第一种代码正常,第二种代码不可以。why?????

window.onload = function(){

          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="yellow";

        }

        obj.onmouseout=function(){

            obj.style.backgroundColor="red";

        }

     }

----------------------------------

以上代码可以运行,为什么下面的代码不可以呢?

-----------------------------------

window.onload = function(){

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

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

          

              

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

 

        onmouseover=function(){

            tr[i].style.backgroundColor="yellow"

        onmouseout=function(){

            tr[i].style.backgroundColor="red";

        }

   


正在回答

2 回答

https://img1.sycdn.imooc.com//5c199a1a0001c2ef07100306.jpg看一下我给你点出来的

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

突然感觉空气都凝结了. 

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

新手村上路 提问者

why……这个问题很尴尬?囧
2019-01-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

第一种代码正常,第二种代码不可以。why?????

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