变色部分为什么要要使用for循环呢?

来源:9-22 编程练习

weibo_一万群什麼_0

2016-05-24 09:11

window.onload = function(){
           var trs = document.getElementsByTagName('tr');
           for(var i = 1; i < trs.length; i++){
                trs[i].onmouseover = function(){
                     this.style.backgroundColor = "#f2f2f2";
                }
                trs[i].onmouseout = function(){
                     this.style.backgroundColor = "#fff";
                }
          }
        }

这个函数为什么要时候for循环遍历一次?

写回答 关注

1回答

  • kuban
    2016-05-24 09:37:06
    已采纳

    给每一行添加事件效果,没有for循环的话,要给哪个加呢

    weibo_...

    好的谢谢你!

    2016-05-24 22:16:46

    共 4 条回复 >

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题