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

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

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

})

}

}


提问者:lcs1986 2015-09-17 16:16

个回答

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

    问题已解决!