0
我想更改頁面younow的聊天窗口fontcolor/fontsize。我可以更改字體大小,但我無法更改字體顏色。 如何更改聊天窗口的字體顏色? 這是我使用的是什麼:使用setattribute更改字體顏色(聊天中)
document.getElementById("chatcomments").setAttribute('style','font-size:36px; color:red !important;');
您應該'cssText'爲...'的document.getElementById( 「chatcomments」)style.cssText =「字體大小:36px;顏色:紅色;'' – LGSon
'chatcomments'不是文本的直接元素,下面是一個範圍,所以如果你嘗試這個'document.querySelector(「。chatcomments span」)。style.cssText ='font- size:36px;顏色:紅色;'' – LGSon