使用JS更改页面背景颜色的最快方法?
使用 javascript 修改文档背景颜色的最小且最快的方法是什么?它应该是跨浏览器的。
我尝试了以下方法,但在 Firebug 中不起作用:
document.body.bgcolor = "#eee";
document.documentElement.bgcolor = "#eee";
What's the smallest and fastest way to modify a document's background color using javascript? it should be cross browser.
I tried the following which didn't work in firebug:
document.body.bgcolor = "#eee";
document.documentElement.bgcolor = "#eee";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
backgroundColor
CSS 属性:Use the
backgroundColor
CSS property:这应该可行:
这里是一个现场演示。
This should work:
Here is a live demo.