san_3shui
2016-10-04 15:14
window.onload = function(){
var x=document.getElementsByTagName("tr");
for(i=0;i<x.length;i++){
x[i].onmouseover=function(){
x[i].style.backgroundColor="#f2f2f2"
};
x[i].onmouseout=function(){
x[i].style.backgroundColor="#fff"
};
}
}
因为你多了分号,for不能辨别你写完循环没有,所以把function(){};的分号去掉,把分号放到function(){code block ; }
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题