blob: bd8ac57ed7d3f3a4ade1bc4f6064d9741c7fa1b4 (
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
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
|
---
title: 'Window: pagehide イベント'
slug: Web/API/Window/pagehide_event
tags:
- API
- Event
- History
- Navigation
- Reference
- Window
- pagehide
- イベント
- 履歴
translation_of: Web/API/Window/pagehide_event
---
<div>{{APIRef("HTML DOM")}}</div>
<p><span class="seoSummary"><strong><code>pagehide</code></strong> イベントは、ブラウザーがセッションの履歴から他のページを表示する過程において、現在のページを非表示にしたときに {{domxref("Window")}} へ送られます。</span>例えば、ユーザーがブラウザーの戻るボタンをクリックしたとき、現在のページはひとつ前のページが表示される前に <code>pagehide</code> イベントを受け取ります。</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("PageTransitionEvent")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラープロパティ</th>
<td>{{domxref("Window.onpagehide", "onpagehide")}}</td>
</tr>
</tbody>
</table>
<h2 id="Examples" name="Examples">例</h2>
<p>この例では、イベントハンドラーが <code>pagehide</code> イベントを監視するために確立され、ページが再利用できるように保存されようとするときに特殊な扱いを行います。</p>
<pre class="brush: js">window.addEventListener("pagehide", event => {
if (event.persisted) {
/* このページは破棄されないので、後で再利用することができます */
}
}, false);
</pre>
<p>これは {{domxref("Window.onpagehide", "onpagehide")}} イベントハンドラープロパティを {{domxref("Window")}} 上で利用することで書くこともできます。</p>
<pre class="brush: js">window.onpagehide = event => {
if (event.persisted) {
/* このページは破棄されないので、後で再利用することができます */
}
}
</pre>
<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', 'browsing-the-web.html#event-pagehide', 'pagehide')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>初回定義</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'browsers.html#event-pagehide', 'pagehide')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Window.pagehide_event")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Window.onpageshow", "onpageshow")}} イベントハンドラープロパティ</li>
<li>{{domxref("Window.pageshow_event", "pageshow")}} イベント</li>
</ul>
|