这样为什么没有作用
indow.onload = function(){
var tr=document.getElementsByTagName("tr");
for(var i=0;i<tr.length;i++)
{
//change(tr[i]);
tr[i].onmouseover= function(){
tr[i].style.backgroundColor="blue";
}
tr[i].onmouseout=function(){
tr[i].style.backgroundColor="red";
}
}
}