gpt4 book ai didi

javascript - 设置元素的 style.backgroundColor 在 IE8 中不起作用?

转载 作者:行者123 更新时间:2023-11-28 13:25:07 25 4
gpt4 key购买 nike

[重新编辑的问题]

一段简单的代码:

var newDiv = document.createElement("div");
newDiv.style["background-color"] = "#DDD";
newDiv.innerHTML = " (some content) ";
container.appendChild(newDiv);

(对象“容器”定义较早)

在最新版本的 Chrome 中,新的 div 框显示为灰色背景,在 IE8 中背景是透明的。如果我改成这样:

newDiv.style.backgroundColor = "#DDD";

框的背景在 IE8 中也是灰色的。为什么是这样?我还没有在 IE9 中测试过。

最佳答案

要使其在 IE8 和 IE9 中正常工作,请在文档的开头指定正确的文档类型:

<!DOCTYPE html>
<html>
...

关于javascript - 设置元素的 style.backgroundColor 在 IE8 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14126235/

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