blob: ee344167096479a9f64828ed5e52df86c1f96ad7 (
plain)
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
|
---
title: WindowEventHandlers.onunload
slug: Web/API/WindowEventHandlers/onunload
tags:
- API
- Event Handler
- HTML DOM
- MakeBrowserAgnostic
- Property
- Reference
- WindowEventHandlers
translation_of: Web/API/WindowEventHandlers/onunload
---
<div>{{APIRef("HTML DOM")}}</div>
<p><span class="seoSummary">{{domxref("WindowEventHandlers")}} ミックスインの <strong><code>onunload</code></strong> プロパティは、{{Event("unload")}} イベントを処理するための {{domxref("EventHandler")}} です。 このイベントは、ウィンドウがコンテンツとリソースをアンロードするときに発生します。 リソースの除去は、<code>unload</code> イベントが発生した後に処理されます。</span></p>
<div class="blockIndicator note">
<p><strong>メモ</strong>: ポップアップブロッカーを備えたブラウザーは、<code>onunload</code> イベントハンドラ関数にあるすべての {{domxref("Window.open()")}} メソッドの呼び出しを無視します。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">window.addEventListener("unload", function(event) { ... });
window.onunload = function(event) { ... };
</pre>
<p>通常は、<code>onunload</code> の代わりに {{domxref("EventTarget.addEventListener", "window.addEventListener()")}} と {{event("unload")}} イベントを使用することをお勧めします。</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('HTML WHATWG', '#handler-window-onunload', 'onunload')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5.1', '#windoweventhandlers', 'GlobalEventHandlers')}}</td>
<td>{{Spec2('HTML5.1')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName("HTML5 W3C", "#windoweventhandlers", "GlobalEventHandlers")}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.WindowEventHandlers.onunload")}}</p>
<p>Firefox 1.5 では、ページでこのイベントハンドラを使用すると、ブラウザーがメモリ内の bfcache にページをキャッシュできなくなります。 詳細については、<a href="/ja/Firefox/Releases/1.5/Using_Firefox_1.5_caching">Firefox 1.5 のキャッシュの使用</a>を参照してください。</p>
|