在以下代码行中遇到此错误:
document.getElementsByTagName("table")[0].style.setProperty("background-color", "#D19000", "important");
只有在IE8中,有人知道如何解决它吗?
答案 0 :(得分:2)
对于旧版本的Internet Explorer,您将需要使用以下语法:
elem.style.backgroundColor = "#D19000";
elem.style.color = "red";
请注意,所有带连字符的属性都必须位于camelCase中。