4
iframeのアンロードイベントを削除するにはどうすればできますか?iframeを削除するときにonunloadイベントをトリガーする方法は?
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>
どのようにトリガーできますか?
それはFirefoxではなく、Chromeで素晴らしい作品。何か案は? – ipinyol