在这个例子中,Chrome 将背景设置为红色,而 firefox 和 IE 则没有。
试:
document.getElementById("firefoxDiv").style['backgroundColor'] = "Red";
和
document.getElementById("firefoxDiv").style['background-color'] = "Red";
我宁愿能够使用外部 CSS 中使用的相同语法
background-color
与使用 javascript 的内联.style.backgroundColor =
谢谢你的帮助!
注意:请 不要使用 jQuery。