这样的代码为什么不可用?不能实现效果
var tr=document.getElementsByTagName("tr");
for(var i=0;i<tr.length;i++){
tr[i].onmouseover=function(){
tr[i].style.backgroundColor="#333333";
}
tr[i].onmouseout=function(){
tr[i].style.backgroundColor="#fff";
}
}
var tr=document.getElementsByTagName("tr");
for(var i=0;i<tr.length;i++){
tr[i].onmouseover=function(){
tr[i].style.backgroundColor="#333333";
}
tr[i].onmouseout=function(){
tr[i].style.backgroundColor="#fff";
}
}
2017-08-03
举报