gpt4 book ai didi

iframe - 删除 iframe 时如何触发 onunload 事件?

转载 作者:行者123 更新时间:2023-12-04 18:38:01 34 4
gpt4 key购买 nike

iframe 的卸载事件在移除时如何触发?

使用下面的代码,当调用 removeChild(iframe) 时,不会触发 onunload 事件。

<!-- parent.html -->
<html>
<head>
<title>remove iframe</title>
<script type="text/javascript">
window.onload = function() {
var button = document.getElementsByTagName("BUTTON")[0];
button.onclick = function() {
document.body.removeChild(document.getElementsByTagName("IFRAME")[0]);
};
};
</script>
</head>
<body>
<iframe src="./son.html" />
<button>Remove iframe</botton>
</body>
</html>
<!-- son.html -->
<html>
<head>
<title>son html</title>
<script type="text/javascript">
window.onload = function() { alert("hello"); };
window.onunload = function() { alert("world!"); };
</script>
</head>
<body style="background-color:#aaccee;">
</body>
</html>

我怎样才能触发它?

最佳答案

在移除frame之前,可以将iframe元素的src属性设置为“about:blank”,检查是否使iframe触发onunload事件。

例如:

var iframe = document.getElementsByTagName("IFRAME")[0];
iframe.src = "about:blank";
document.body.removeChild(iframe);

关于iframe - 删除 iframe 时如何触发 onunload 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8677113/

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