gpt4 book ai didi

javascript - document.body.appendChild 的第一次机会

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

我正在寻找第一个调用 document.body.appendChild 来附加元素的机会。我目前正在使用 body 的 onload 但据我了解,这会等到图像和子帧加载后再触发。

我只要求该解决方案在 IE 中有效(这是针对 IE 特定的演示),但我相信为其他人提供跨浏览器答案以供引用的重要性,所以如果你同时提供这两个问题,请加分。

下面是我已经在做的事情的说明。

<html>
<head>
<title>Insertion</title>
<script type="text/javascript">
function insertStuff() {
var iframe = document.createElement("iframe");

document.body.appendChild(iframe);
}
</script>
</head>
<body onload="insertStuff()">
</body>
</html>

最佳答案

    <html>
<head>
<title>Insertion</title>

</head>
<body>
<script type="text/javascript">
function insertStuff() {
var iframe = document.createElement("iframe");

document.body.appendChild(iframe);
}
insertStuff()
</script>
<!-- Here goes all the other elements -->
</body>
</html>

这将是跨浏览器并且肯定适用于 IE6 及更高版本。不确定下面的任何事情

关于javascript - document.body.appendChild 的第一次机会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19434102/

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