我想更改頁面younow的聊天窗口fontcolor/fontsize。我嘗試了2'cssText'樣本,但是我無法將字體顏色更改爲RED。如何將聊天窗口字體顏色更改爲RED?我使用Firefox和greasemonkey。使用setattribute改變顏色(在聊天中)
sample 1:
document.getElementById("chatcomments").style.cssText = 'font-size: 36px; color: red !important;'
sample 2:
document.querySelector(".chatcomments span").style.cssText = 'font-size: 36px; color: red !important;'
您是否試圖使瀏覽器擴展/自定義JavaScript來修改頁面客戶端? – cybermonkey
它有可能是另一種風格與它相沖突嗎?這可能是因爲樣式表爲樣式設置了一個重要的元素。 – MarkyPython
@cybermonkey:是我想製作一個自定義的JavaScript(我使用的是Firefox和greasemonkey) – Heiko