求助!!!var定义参数为什么一定要var tr?改成别的就没效果了。
window.onload = function(){
var tr=document.getElementsByTagName("tr");//var定义参数为什么一定要var tr?改成别的就没效果了。
for(var i=0;i<tr.length;i++){
ob(tr[i]);
}
}
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
function ob(abj){
abj.onmouseover=function(){
abj.style.backgroundColor="#f2f2f2";
}
abj.onmouseout=function(){
abj.style.backgroundColor="#fff";
}
}