为什么我的代码只能改第一行颜色,而且改了之后又改不回来了。。
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr=document.getElementsByTagName("tr");
for(i=0;i<tr.length;i++){
tr[i].onmouseover=function(){
tr[i].style.backgroundColor="#f2f2f2";
};
a_list[i].onmouseout=function(){
tr[i].style.backgroundColor="#fff";
};
}