为什么这么写提交上去表格直接就是红色?
window.onload = function(){
trlist=document.getElementsByTagName("tr");
for(var i=0;i<trlist.length;i++){
trlist[i].onmouseover=bgcChange(trlist[i]);
trlist[i].onmouseout=function(){this.style.backgroundColor="#fff"}
}
}
function bgcChange(a){
a.style.backgroundColor="red";
}