當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML TouchEvent touches用法及代碼示例


HTML DOM中的TouchEvent touches屬性用於返回touch對象的數組。對於當前接觸該表麵的每個手指,它返回一個。 touches屬性是隻讀屬性,它返回一組觸摸對象。

用法:

event.touches

返回值:它返回觸摸對象的數組。


以下示例程序旨在說明HTML中的TouchEvent touches屬性:

例:本示例查找表麵上的手指觸摸數量。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        HTML DOM TouchEvent Touches Property 
    </title> 
</head> 
  
<body ontouchstart = "touch(event)" ontouchend = "touch(event)"> 
  
    <h1>GeeksforGeeks</h1>  
      
    <h2>TouchEvent Touches Property</h2> 
      
    <p>Number of fingers touching this document:
    <span id="test"></span>. 
      
    <!-- script to colunt number of touch -->
    <script> 
        function touch(event) { 
            var t = event.touches.length; 
            document.getElementById("test").innerHTML = t; 
        } 
    </script> 
</body> 
  
</html>                                                  

輸出:
觸摸文檔之前:

觸摸文檔後:

支持的瀏覽器:下麵列出了DOM TouchEvent touches屬性支持的瀏覽器:

  • Internet Explorer 10.0
  • 穀歌瀏覽器22.0
  • Firefox 52.0


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM TouchEvent touches Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。