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

为什么不能用tr[i].setAttribute('onmouseover','changeColor(this)');来改变颜色

为什么不能用tr[i].setAttribute('onmouseover','changeColor(this)');来改变颜色

 function changeColor(oj){

     oj.style.backgroundColor='#f2f2f2';

提问者:自然卷花椰菜 2015-07-19 17:46

个回答

  • 周博文
    2016-01-25 16:41:03

    setAttribute()方法的语法是 setAttribute(name,value),name为要设置的属性名,value为要设置的属性值,