qq_慎_0
2015-04-29 17:54
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]
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题