在我的javascript代码中,我正在尝试访问外部样式表中存在的子类。使用
window.getComputedStyle("className", null).getPropertyValue("color")
抛出未处理的错误:WRONG_ARGUMENTS_ERR
。有没有人看到这个问题?
我想访问类属性,它存在于外部样式表中。
由于
答案 0 :(得分:2)
我认为您需要提供getComputedStyle()
DOM-Element,而不仅仅是ClassName
也许试试:
var el = document.getElementsByClassName("className")[0];
window.getComputedStyle(el, null).getPropertyValue("color");