window.onload = function(){
var trs=document.getElementsByTagName("tr");
for(var i=0;i<trs.length;i++){
bgcChange(trs[i]);
}
}
function bgcChange(obj){
obj.onmouseover=function(){
obj.style.backgroundColor("#f2f2f2");
}
obj.onmouseout=function(){
obj.style.backgroundColor("#fff");
}}
不知道代码哪里有问题,在Chrome中审查元素说obj.style.backgroundColor is not a function
陌卍言
相关分类