大佬们。为什么这样写背景颜色不会改变呢
var row=document.getElementsByTagName("tr");
for(i=0;i<row.length;i++)
{
row[i].onmouseover=function(){
row[i].style.backgroundColor="#f2f2f2";
}
row[i].onmouseout=function(){
row[i] .style.backgroundColor="#fff"
}
}