blob: 756e0c81d04b4643b4494a2528b21ca302ce296b (
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
|
---
title: PageTransitionEvent
slug: Web/API/PageTransitionEvent
translation_of: Web/API/PageTransitionEvent
---
<p>{{APIRef("HTML DOM")}}</p>
<p>Page transition events fire when a webpage is being loaded or unloaded.</p>
<p>当网页在加载完成或卸载后会触发页面传输事件(Page transition events)。</p>
<h2 id="DOM_Information">DOM Information</h2>
<p> </p>
<h3 id="Inheritance_Hierarchy">Inheritance Hierarchy</h3>
<div> Event
<div> PageTransitionEvent</div>
</div>
<h2 id="Example">Example</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><!DOCTYPE html>
<html>
<body onpageshow="myFunction(event)">
</body>
</html></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">function myFunction(event) {
if (event.persisted) {
alert("The page was cached by the browser");
} else {
alert("The page was NOT cached by the browser");
}
}</pre>
<h2 id="Members">Members</h2>
<p>The <strong>PageTransitionEvent</strong> object has these types of members:</p>
<ul>
<li><a href="#">Properties</a></li>
</ul>
<h3 id="Properties">Properties</h3>
<p>The <strong>PageTransitionEvent</strong> object has these properties.</p>
<table class="members" id="memberListProperties">
<tbody>
<tr>
<th>Property</th>
<th>Access type</th>
<th>Description</th>
</tr>
<tr>
<td>
<p><strong>persisted</strong></p>
</td>
<td>只读</td>
<td>
<p>标记页面是否从缓存(Backforward Cache)中加载</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
|