两个问题,求解答
有两个问题,
1.新增行不能使用样式
2.for(i=0;i<trs.length;i++){
trs[i].onmouseover=function(){
this.style.backgroundColor='#ccc';
};
}
为什么 不能用trs[i].style.backgroundColor='#ccc';去替换 this.style.backgroundColor='#ccc';