关于事件绑定的,为什么注释处的代码能执行,没有注释的不能?

来源:9-22 编程练习

lcs1986

2015-09-17 16:16

var bindColor = function(){

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

{

var tr = as[i].parentNode.parentNode;

// tr.onmouseover = function(){

// this.style.backgroundColor ="#f2f2f2";

// }

// tr.onmouseout = function(){

// this.style.backgroundColor ="#fff";

// }  

addEvent(tr,"onmouseover",function(){

this.style.backgroundColor ="#f2f2f2";

})

addEvent(tr,"onmouseout",function(){

this.style.backgroundColor ="#fff";

})

}

}


写回答 关注

1回答

  • lcs1986
    2015-09-17 16:18:02

    问题已解决!

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题