gpt4 book ai didi

javascript insidehtml 显示为文本

转载 作者:行者123 更新时间:2023-12-01 01:52:37 26 4
gpt4 key购买 nike

我对 JavaScript 还很陌生。我正在尝试在 <body> 的顶部添加一个 div 。但由于某种原因,它将我的代码添加为这样的文本

enter image description here

这是我目前的代码。

function addDark() {
document.body.prepend("<div style='position:fixed;top:0;left:0;z-index:999;background:black;opacity:.9;'></div>")
}

我该如何解决这个问题?提前致谢,乔里斯

最佳答案

您需要创建一个作为 div 的 html 元素。然后你可以将你的 div 添加到 body 元素中。

function addDark() {
var div = document.createElement("div");
// tweak your css for the div here
document.body.prepend(div);
}

关于javascript insidehtml 显示为文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51330365/

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