不知道大家在实践 时候有没有遇到这种情况,用setAttribute跟getAttribute设置或者获取属性的时候,只能获取元素内置的属性,比如title,class,src,href这一类的,如果是style比如color,display等等的属性,是获取不了也设置不了的……难道是兼容性?我用的Chrome……
因为这里的属性是指元素的属性,style,class,title,id等。
color,height等属于样式style的属性。
设置:document.getElementById('p4').style.backgroundColor="red";
获取:var rgb = document.getElementById('p4').style.backgroundColor;