1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
---
title: unload
slug: Web/API/Window/unload_event
translation_of: Web/API/Window/unload_event
---
<div>{{APIRef}}</div>
<p><span class="seoSummary"><code>unload</code> イベントは、文書または子リソースがアンロードされるときに発生します。</span></p>
<table class="properties">
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>なし</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>不可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>{{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラープロパティ</th>
<td>{{domxref("WindowEventHandlers/onunload", "onunload")}}</td>
</tr>
</tbody>
</table>
<p>以下のイベントの後に発生します。</p>
<ul>
<li>{{domxref("Window/beforeunload_event", "beforeunload")}} (キャンセル可能なイベント)</li>
<li>{{domxref("Window/pagehide_event", "pagehide")}}</li>
</ul>
<p>文書は以下のような状態にあります。</p>
<ul>
<li>すべてのリソースがまだ存在する (img、iframe など)</li>
<li>エンドユーザーから見えるものは何もない</li>
<li>UI でのやり取りは効果がない ({{domxref("window.open")}}, {{domxref("window.alert", "alert")}}, {{domxref("window.confirm", "confirm")}}, など)</li>
<li>エラーが発生しても、アンロードの処理の流れは停止しない</li>
</ul>
<p>unload イベントは文書ツリーにも続くことに注意してください。親フレームのアンロードは、子フレームの <code>unload</code> の前に行われます (以下の例を参照)。</p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: html"><!DOCTYPE html>
<html>
<head>
<title>Parent Frame</title>
<script>
window.addEventListener('beforeunload', function(event) {
console.log('I am the 1st one.');
});
window.addEventListener('unload', function(event) {
console.log('I am the 3rd one.');
});
</script>
</head>
<body>
<iframe src="child-frame.html"></iframe>
</body>
</html></pre>
<p><code>child-frame.html</code> の内容を以下に示します。</p>
<pre class="brush: html"><!DOCTYPE html>
<html>
<head>
<title>Child Frame</title>
<script>
window.addEventListener('beforeunload', function(event) {
console.log('I am the 2nd one.');
});
window.addEventListener('unload', function(event) {
console.log('I am the 4th and last one…');
});
</script>
</head>
<body>
☻
</body>
</html></pre>
<p>親フレームがアンロードされると、 <code>console.log()</code> のメッセージに記述された順序でイベントが発生します。</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('UI Events', '#event-type-unload', 'unload')}}</td>
<td>{{Spec2('UI Events')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("api.Window.unload_event")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>関連イベント: {{domxref("Window/DOMContentLoaded_event", "DOMContentLoaded")}}, {{domxref("Document/readystatechange_event", "readystatechange")}}, {{domxref("Window/load_event", "load")}}, {{domxref("Window/unload_event", "unload")}}</li>
<li><a href="https://html.spec.whatwg.org/multipage/browsers.html#unloading-documents">Unloading Documents — unload a document</a></li>
</ul>
|