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

9-2编程练习中i=1,为什么从1开始

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

正在回答

1 回答

因为第一行是表头不需要变色

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

举报

0/150
提交
取消

9-2编程练习中i=1,为什么从1开始

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