aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/events/afterprint/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/events/afterprint/index.html')
-rw-r--r--files/zh-cn/web/events/afterprint/index.html102
1 files changed, 0 insertions, 102 deletions
diff --git a/files/zh-cn/web/events/afterprint/index.html b/files/zh-cn/web/events/afterprint/index.html
deleted file mode 100644
index 3ee72441cd..0000000000
--- a/files/zh-cn/web/events/afterprint/index.html
+++ /dev/null
@@ -1,102 +0,0 @@
----
-title: afterprint
-slug: Web/Events/afterprint
-translation_of: Web/API/Window/afterprint_event
----
-<p>在相关联的文档已开始打印或打印预览已关闭之后, 触发 <code>afterprint</code>事件。</p>
-
-<h2 id="基本信息">基本信息</h2>
-
-<dl>
- <dt style="float: left; text-align: right; width: 120px;">Specification</dt>
- <dd style="margin: 0 0 0 120px;"><a class="external" href="https://html.spec.whatwg.org/multipage/webappapis.html#printing">HTML5</a></dd>
- <dt style="float: left; text-align: right; width: 120px;">Interface</dt>
- <dd style="margin: 0 0 0 120px;">Event</dd>
- <dt style="float: left; text-align: right; width: 120px;">Bubbles</dt>
- <dd style="margin: 0 0 0 120px;">No</dd>
- <dt style="float: left; text-align: right; width: 120px;">Cancelable</dt>
- <dd style="margin: 0 0 0 120px;">No</dd>
- <dt style="float: left; text-align: right; width: 120px;">Target</dt>
- <dd style="margin: 0 0 0 120px;">DefaultView (<code>&lt;window&gt;</code>)</dd>
- <dt style="float: left; text-align: right; width: 120px;">Default Action</dt>
- <dd style="margin: 0 0 0 120px;">None</dd>
-</dl>
-
-<h2 id="属性">属性</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Property</th>
- <th scope="col">Type</th>
- <th scope="col">Description</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td><code>target</code> {{readonlyInline}}</td>
- <td>{{domxref("EventTarget")}}</td>
- <td>The event target (the topmost target in the DOM tree).</td>
- </tr>
- <tr>
- <td><code>type</code> {{readonlyInline}}</td>
- <td>{{domxref("DOMString")}}</td>
- <td>The type of event.</td>
- </tr>
- <tr>
- <td><code>bubbles</code> {{readonlyInline}}</td>
- <td>{{jsxref("Boolean")}}</td>
- <td>Whether the event normally bubbles or not.</td>
- </tr>
- <tr>
- <td><code>cancelable</code> {{readonlyInline}}</td>
- <td>{{jsxref("Boolean")}}</td>
- <td>Whether the event is cancellable or not.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="例子">例子</h2>
-
-<p>使用 <code>addEventListener()</code>:</p>
-
-<pre class="brush: js notranslate">window.addEventListener('afterprint', (event) =&gt; {
- console.log('After print');
-});</pre>
-
-<p>使用 <code>onafterprint</code> 时间监听属性:</p>
-
-<pre class="brush: js notranslate">window.onafterprint = (event) =&gt; {
- console.log('After print');
-};</pre>
-
-<h2 id="规范">规范</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- </tr>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#event-afterprint')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="浏览器兼容性">浏览器兼容性</h2>
-
-
-
-<p>{{Compat("api.Window.afterprint_event")}}</p>
-
-<h2 id="相关事件">相关事件</h2>
-
-<ul>
- <li><a href="https://developer.mozilla.org/zh-CN/docs/Web/Events/beforeprint">beforeprint</a></li>
-</ul>