gpt4 book ai didi

Javascript Document.bgColor 不起作用

转载 作者:行者123 更新时间:2023-11-30 07:11:41 26 4
gpt4 key购买 nike

在下面的代码中,我得到了两个对话框,但页面的 bgColor 从未改变。是否有任何标准不支持 JavaScript 中的字体/颜色更改?

 <html>
<head>
</head>

<body bgColor="GRAY">
<script type="text/javascript">
document.write("This message is written by JavaScript");
alert('Am here');
alert('Am here again');
document.bgcolor="WHITE";
</script>
</body>

</html>

最佳答案

bgColor 真的非常旧。最好使用 CSS 值。您需要处理 body 元素,而不是文档。

这应该有效:document.body.style.backgroundColor = '#ffffff'

关于Javascript Document.bgColor 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2686503/

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