gpt4 book ai didi

javascript - 如何创建 iframe 并仅在 iframe 加载后销毁元素?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:19:20 25 4
gpt4 key购买 nike

我可以使用 appendChild 创建一个 iframe,而无需 jquery,我是否可以知道 iframe 何时加载然后销毁该元素?

最佳答案

您可以使用 onLoad 事件。

 <iframe onload="this.parentNode.removeChild(this);" src="/"></iframe>

此处示例:http://jsfiddle.net/mSZ4X/1/

或者使用纯 JavaScript:

var iframe = document.createElement("iframe");

iframe.src = "/";
iframe.onload = function() {
this.parentNode.removeChild(this);
};

document.body.appendChild(iframe);

此处示例:http://jsfiddle.net/mSZ4X/2/

关于javascript - 如何创建 iframe 并仅在 iframe 加载后销毁元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5842893/

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