兼容性問(wèn)題
不知道大家在實(shí)踐 時(shí)候有沒(méi)有遇到這種情況,用setAttribute跟getAttribute設(shè)置或者獲取屬性的時(shí)候,只能獲取元素內(nèi)置的屬性,比如title,class,src,href這一類的,如果是style比如color,display等等的屬性,是獲取不了也設(shè)置不了的……難道是兼容性?我用的Chrome……
不知道大家在實(shí)踐 時(shí)候有沒(méi)有遇到這種情況,用setAttribute跟getAttribute設(shè)置或者獲取屬性的時(shí)候,只能獲取元素內(nèi)置的屬性,比如title,class,src,href這一類的,如果是style比如color,display等等的屬性,是獲取不了也設(shè)置不了的……難道是兼容性?我用的Chrome……
2018-01-03
舉報(bào)
2018-01-04
因?yàn)檫@里的屬性是指元素的屬性,style,class,title,id等。
color,height等屬于樣式style的屬性。
設(shè)置:document.getElementById('p4').style.backgroundColor="red";
獲?。簐ar rgb = document.getElementById('p4').style.backgroundColor;