兼容性问题

来源:9-6 setAttribute()方法

慕莱坞0417389

2018-01-03 18:04

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

写回答 关注

1回答

  • 慕仔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;

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题