为甚么运行不出来,明明其他人的一样o(╥﹏╥)o
var a=document.getElementsByTagName("tr");
for (var i =1;i< a.length ; i++) {
a[i].onmouseover=function(){
this.style.backgroundColor="blue";
}
a[i].onmouseout=function(){
this.style.backgroundColor="red";
}