为什么功能可以实现,在调试时却显示Uncaught TypeError: Cannot set property 'onmouseover' of undefined

来源:9-22 编程练习

慕哥2935724

2016-03-07 10:05

 function Highlight(){
         var tbody=document.getElementById("table").lastChild;
         var trs=tbody.getElementsByTagName("tr");
         for(var i=0;i<=trs.length;i++){
             trs[i].onmouseover=function(){
                 this.style.backgroundColor="#f2f2f2";
             }
           trs[i].onmouseout=function(){
               this.style.backgroundColor="#fff";
           }
         }
       }

写回答 关注

1回答

  • WS01234
    2016-03-07 22:24:23

    for(var i=0;i<=trs.length;i++)改为for(var i=1;i<=trs.length;i++);

    i应该从1开始,trs[0]指的是空白节点,也就是tbody标签后面的回车。


JavaScript进阶篇

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

468064 学习 · 21891 问题

查看课程

相似问题