aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/uievent/view/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/api/uievent/view/index.html')
-rw-r--r--files/zh-cn/web/api/uievent/view/index.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/uievent/view/index.html b/files/zh-cn/web/api/uievent/view/index.html
new file mode 100644
index 0000000000..215789e0e9
--- /dev/null
+++ b/files/zh-cn/web/api/uievent/view/index.html
@@ -0,0 +1,53 @@
+---
+title: 用户界面项目视图
+slug: Web/API/UIEvent/view
+tags:
+ - API
+ - DOM
+ - UI
+ - 参考
+ - 只读
+ - 属性
+translation_of: Web/API/UIEvent/view
+original_slug: Web/API/UIEvent/视图
+---
+<p>{{APIRef("DOM Events")}}</p>
+
+<p>The <strong><code>UIEvent.view</code></strong> 只读属性返回的生成事件的 {{domxref("document.defaultView")}} (<code>window</code> of the document) 对象。在浏览器中,这是事件所在的 {{ domxref("Window") }} 对象。</p>
+
+<h2 id="语法">语法</h2>
+
+<pre class="syntaxbox">var <em>view</em> = <em>event</em>.view;
+</pre>
+
+<ul>
+ <li><code>view</code> 是对 <code>AbstractView</code> 对象的引用。</li>
+</ul>
+
+<h2 id="技术参数">技术参数</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">规格</th>
+ <th scope="col">状态</th>
+ <th scope="col">注释</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM3 Events', '#interface-UIEvent', 'UIEvent')}}</td>
+ <td>{{Spec2('DOM3 Events')}}</td>
+ <td>从 {{SpecName('DOM2 Events')}}, 将 <code>view</code> 类型从 <code>AbstractView</code> 更改为 <code>WindowProxy</code>.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM2 Events', '#Events-UIEvent', 'UIEvent')}}</td>
+ <td>{{Spec2('DOM2 Events')}}</td>
+ <td>最初的定义。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="浏览器的兼容性">浏览器的兼容性</h2>
+
+<div class="hidden">本页上的兼容性表是由结构化数据生成的。如果您想贡献数据,请查看<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并向我们发送请求。</div>
+
+<p>{{Compat("api.UIEvent.view")}}</p>