diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/pagetransitionevent/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/pagetransitionevent/index.html')
-rw-r--r-- | files/zh-cn/web/api/pagetransitionevent/index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/pagetransitionevent/index.html b/files/zh-cn/web/api/pagetransitionevent/index.html new file mode 100644 index 0000000000..756e0c81d0 --- /dev/null +++ b/files/zh-cn/web/api/pagetransitionevent/index.html @@ -0,0 +1,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> |