问答详情
源自:9-22 编程练习

两个问题,求解答

有两个问题,

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';

提问者:因丶果 2014-11-12 15:08

个回答

  • 偌颜宁
    2014-11-12 17:46:53

    第一个问题,你能把你写的新增行的代码贴出来吗?

    第二个问题,trs[i]是作用在for中的,如果是要用在函数中的话,你可以在function中传一个这样的参数就可以使用了