这样的代码为什么不可用?不能实现效果

来源:9-22 编程练习

qq_X_181

2017-08-03 17:17

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

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

             tr[i].onmouseover=function(){

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

            }

            tr[i].onmouseout=function(){

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

            }

}

写回答 关注

1回答

  • Dcison
    2017-08-03 20:56:05
    已采纳

    http://img.mukewang.com/59831cf90001647d07400395.jpg

    应该用this.style.backgroundColor 而不是tr[i].style.backgroundColor

    这两个有什么不同,已经alert出来了(前一个是对象,后一个是underfined)

    qq_X_1...

    非常感谢!

    2017-08-04 09:50:33

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题