blob: adbb6f004961e541dee3fd776a1318ba9ff89367 (
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
|
---
title: TouchList
slug: Web/API/TouchList
translation_of: Web/API/TouchList
---
<div>
<p>{{ APIRef("Touch Events") }}</p>
</div>
<p><code>TouchList</code> 介面表示了一個觸控平面上所有觸碰點的列表;舉例來說,假如使用者有三隻手指於觸控平面(如觸控螢幕或是觸控板)上,則其相對應的 <code>TouchList</code> 物件中就會分別有三個 {{domxref("Touch")}} 物件各代表一個手指的觸碰。</p>
<h2 id="屬性">屬性</h2>
<dl>
<dt>{{domxref("TouchList.length")}} {{readonlyInline}}</dt>
<dd>The number of {{domxref("Touch")}} objects in the <code>TouchList</code>.</dd>
</dl>
<h2 id="方法">方法</h2>
<dl>
<dt>{{domxref("TouchList.identifiedTouch()")}} {{obsolete_inline}}</dt>
<dd>Returns the first {{domxref("Touch")}} item in the list whose identifier matches a specified value.</dd>
<dt>{{domxref("TouchList.item()")}}</dt>
<dd>Returns the {{domxref("Touch")}} object at the specified index in the list.</dd>
</dl>
<h2 id="範例">範例</h2>
<p>See the <a href="/en-US/docs/DOM/Touch_events#Example" title="DOM/Touch events#Example">example on the main Touch events article</a>.</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('Touch Events 2','#touchlist-interface')}}</td>
<td>{{Spec2('Touch Events 2')}}</td>
<td>Non-stable version.</td>
</tr>
<tr>
<td>{{SpecName('Touch Events', '#touchlist-interface')}}</td>
<td>{{Spec2('Touch Events')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="瀏覽器相容性">瀏覽器相容性</h2>
{{Compat("api.TouchList")}}
<h2 id="參見">參見</h2>
<ul>
<li><a href="/en-US/docs/DOM/Touch_events" title="DOM/Touch events">Touch events</a></li>
<li>{{domxref("Document.createTouchList()")}}</li>
</ul>
|