在改变背景色中,关于this的一点问题
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr=document.getElementsByTagName('tr');
var len=tr.length;
for(var i=0;i<len;i++) {
tr[i].onmouseover=function(){this.style.backgroundColor="#999";}
tr[i].onmouseout=function(){this.style.backgroundColor="#fff";}
}
}
为什么把上面代码的this改成tr[i]就无效了呢?也就是:
for(var i=0;i<len;i++) {
tr[i].onmouseover=function(){tr[i].style.backgroundColor="#999";}
tr[i].onmouseout=function(){tr[i].style.backgroundColor="#fff";}
}