使用javascript修改文档背景颜色的最小和最快的方法是什么?它应该是跨浏览器。
我尝试了以下在firebug中不起作用的内容:
document.body.bgcolor = "#eee";
document.documentElement.bgcolor = "#eee";
答案 0 :(得分:9)
使用backgroundColor
CSS属性:
document.body.style.backgroundColor = "#eeeeee";
答案 1 :(得分:1)