87,990
社区成员
发帖
与我相关
我的任务
分享
window.onload = function(){
var str = document.getElementsByTagName("tr");
for(var i = 0; i < str.length; i++)
{
str[i].onmouseover=function() {
this.style.backgroundColor="#f2f2f2";
}
str[i].onmouseout = function()
{
str[i].style.backgroundColor = "#fff";
}
}
}