blob: 0fe755821ce8f00adf46c3613fe2b5f034e99e75 (
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
|
---
title: Document.pointerLockElement
slug: Web/API/Document/pointerLockElement
translation_of: Web/API/DocumentOrShadowRoot/pointerLockElement
original_slug: Web/API/DocumentOrShadowRoot/pointerLockElement
---
<div>{{APIRef("DOM")}}</div>
<p><code>pointerLockElement 特性规定了如在鼠标事件中当目标被锁定时的元素集和。如果指针处于锁定等待中、指针没有被锁定,或者目标在另外一个文档中这几种情况,返回的值null。</code></p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">var element = document.pointerLockElement;
</pre>
<h3 id="返回值">返回值</h3>
<p>An {{domxref("Element")}} or <code>null</code>.</p>
<h2 id="特性">特性</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('Pointer Lock','l#extensions-to-the-document-interface','Document')}}</td>
<td>{{Spec2('Pointer Lock')}}</td>
<td>Extend the <code>Document</code> interface</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容</h2>
{{Compat("api.Document.pointerLockElement")}}
<h2 id="相关链接">相关链接</h2>
<ul>
<li>{{ domxref("Document.exitPointerLock()") }}</li>
<li>{{ domxref("Element.requestPointerLock()") }}</li>
<li><a href="/en-US/docs/WebAPI/Pointer_Lock">Pointer Lock</a></li>
</ul>
|