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