gpt4 book ai didi

javascript - 为什么背景颜色没有改变?

转载 作者:行者123 更新时间:2023-11-30 08:14:00 25 4
gpt4 key购买 nike

我有简单运行的 javacript 代码

document.bgColor = "darkblue"; 

Mozilla Documentation ,但是当我单步执行 IE 调试器时,执行该行后背景颜色不会改变。

看起来很简单。我假设 bgColor 指的是元素主体下的 CSS 属性 background-color?

如果有帮助,我可以发布周围的代码。

最佳答案

此页面顶部有一个大的“已弃用”。你应该使用当前的方法:

document.body.style.backgroundColor = 'darkblue';

这在您引用的 MDN 页面中有说明:

document.bgColor is deprecated in DOM Level 2 HTML. The recommended alternative is use of the CSS style background-color which can be accessed through the DOM with document.body.style.backgroundColor. Another alternative is document.body.bgColor, although this is also deprecated in HTML 4.01 in favor of the CSS alternative.

关于javascript - 为什么背景颜色没有改变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6553666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com