有两个问题,
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';
第一个问题,你能把你写的新增行的代码贴出来吗?
第二个问题,trs[i]是作用在for中的,如果是要用在函数中的话,你可以在function中传一个这样的参数就可以使用了