问答详情
源自:9-22 编程练习

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

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

            }

}

提问者:qq_X_181 2017-08-03 17:17

个回答

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

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

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

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