// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var oTable=document.getElementById("table");
var aTr=oTable.getElementsByTagName("tr");
for (var i = 0; i < aTr.length; i++) {
aTr[i].onmouseover=function(){
aTr[i].style.backgroundColor="#f2f2f2";
}
aTr[i].onmouseout=function(){
aTr[i].style.backgroundColor="#fff";
}
}
这里面相当于新写了一个无参数的function,你写aTr[i]的话,函数不明白你想表达什么呀
改成this就好了,为什么呢