gpt4 book ai didi

javascript - 在标签内容之前插入动态创建的 div

转载 作者:行者123 更新时间:2023-11-28 16:01:00 24 4
gpt4 key购买 nike

如果我有一些 HTML 文档的正文如下:

<body>
<p>Here's some text</p>
</body>

然后以下内容将文本附加到 <body> :

var jselem = document.createElement("div");
jselem.innerHTML = '<p>Some other text here</p>';
document.body.appendChild(jselem);

...导致:

Here's some text
Some other text here

有没有办法在创建div后生成以下内容动态地得到以下结果?

Some other text here
Here's some text

最佳答案

我认为你问的是 DOM 方法 insertBefore .

document.body.insertBefore(jselem, document.body.firstChild);

演示: http://jsfiddle.net/MCnxM/

关于javascript - 在标签内容之前插入动态创建的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17002264/

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