aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/conflicting/web/api/globaleventhandlers/ongotpointercapture/index.html
blob: a792bdd45da4dd118baded1800dbe9c7dd446e3d (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
title: Element.ongotpointercapture
slug: conflicting/Web/API/GlobalEventHandlers/ongotpointercapture
tags:
  - API
  - DOM
  - Element
  - Event Handler
  - Pointer Events
  - Property
  - Reference
  - 事件句柄
  - 元素
  - 属性
  - 引用
  - 指针事件
translation_of: Web/API/GlobalEventHandlers/ongotpointercapture
translation_of_original: Web/API/Element/ongotpointercapture
original_slug: Web/API/Element/ongotpointercapture
---
<p>{{ ApiRef("DOM") }}</p>

<p><code>ongotpointercapture</code> 是一个{{domxref("Element")}} 接口的{{domxref("EventHandler")}} 属性,返回一个{{event("gotpointercapture")}} 事件类型的事件句柄 (function) .</p>

<h2 id="Syntax" name="Syntax">语法</h2>

<pre class="eval">var gotCaptureHandler = target.ongotpointercapture;
</pre>

<h3 id="Return_Value" name="Return_Value">Return value</h3>

<dl>
 <dt><code>gotCaptureHandler</code></dt>
 <dd>元素 <code>target</code> 的gotpointercapture 事件句柄。 .</dd>
</dl>

<h2 id="Example">Example</h2>

<pre class="brush: js">&lt;html&gt;
&lt;script&gt;
function overHandler(ev) {
 // Determine the target event's gotpointercapture handler
 var gotCaptureHandler = ev.target.ongotpointercapture;
}
function init() {
 var el=document.getElementById("target");
 el.onpointerover = overHandler;
}
&lt;/script&gt;
&lt;body onload="init();"&gt;
&lt;div id="target"&gt; Touch me ... &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>

<h2 id="Specifications" name="Specifications">Specifications</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 Events 2','#widl-Element-ongotpointercapture', 'ongotpointercapture')}}</td>
   <td>{{Spec2('Pointer Events 2')}}</td>
   <td>无稳定版</td>
  </tr>
  <tr>
   <td>{{SpecName('Pointer Events', '#widl-Element-ongotpointercapture', 'ongotpointercapture')}}</td>
   <td>{{Spec2('Pointer Events')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Edge</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}} <sup>[1]</sup></td>
   <td>{{CompatIE("10")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Android Webview</th>
   <th>Chrome for Android</th>
   <th>Edge</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>Firefox OS</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatIE("10")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<p>[1] Implementation withdrawn. See {{Bug("1166347")}}.</p>

<h2 id="See_also" name="See_also">See also</h2>

<ul>
 <li>{{ event("gotpointercapture") }}</li>
</ul>