blob: 2ff2f4db94f446e06294fb265fa91608bd69a73b (
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
|
---
title: TouchList.length
slug: Web/API/TouchList/length
tags:
- DOM
- Gecko DOM Reference
- Mobile
- touch
translation_of: Web/API/TouchList/length
---
<div>
{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p>この読取専用プロパティは {{domxref("TouchList")}} 内の項目数を表します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>numTouches</var> = <em>touchList</em>.length;
</pre>
<ul>
<li><code>numTouches</code> : {{domxref("TouchList")}} 内の {{domxref("Touch")}} オブジェクトの個数を表す整数値</li>
</ul>
<h2 id="Specification" name="Specification">仕様</h2>
<ul>
<li><a href="http://www.w3.org/TR/touch-events/">Touch Events Specification</a></li>
</ul>
|