使用JS更改页面背景颜色的最快方法?

发布于 2024-10-18 17:15:07 字数 195 浏览 4 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁把谁当真 2024-10-25 17:15:07

使用 backgroundColor CSS 属性:

document.body.style.backgroundColor = "#eeeeee";

Use the backgroundColor CSS property:

document.body.style.backgroundColor = "#eeeeee";
我只土不豪 2024-10-25 17:15:07

这应该可行:

document.body.style.backgroundColor = "#eee";

这里是一个现场演示。

This should work:

document.body.style.backgroundColor = "#eee";

Here is a live demo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文