问答详情
源自:9-6 setAttribute()方法

兼容性问题

不知道大家在实践 时候有没有遇到这种情况,用setAttribute跟getAttribute设置或者获取属性的时候,只能获取元素内置的属性,比如title,class,src,href这一类的,如果是style比如color,display等等的属性,是获取不了也设置不了的……难道是兼容性?我用的Chrome……

提问者:慕莱坞0417389 2018-01-03 18:04

个回答

  • 慕仔3497884
    2018-01-04 20:45:16

    因为这里的属性是指元素的属性,style,class,title,id等。

    color,height等属于样式style的属性。

    设置:document.getElementById('p4').style.backgroundColor="red";

    获取:var rgb = document.getElementById('p4').style.backgroundColor;