为什么我这样写浏览器报错
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
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";
}
}