window.onload = function(){
var tr=document.getElementsByTagName("tr");
for(var i= 0;i<tr.length;i++)
{
tr[i].onmouseover=function(){
tr[i].style.backgroundColor="#f2f2f2";
}
}
楼上正解,内部函数有没有定义的变量.
tr[i].onmouseover=function(){
this.style.backgroundColor="#f2f2f2";
}
因为在function里 找不到tr[i]