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


HTML touchend事件用法及代碼示例


當用戶將手指從元素上移開時,touchend事件用於執行腳本。它僅適用於帶觸摸屏的設備。

用法:

object.ontouchend = myScript;

以下示例程序旨在說明touchend事件:
示例1:用戶釋放觸摸時執行JavaScript。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>touchend Event in HTML</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>touchend Event</h2> 
    <br> 
  
    <p ontouchend="end()"> 
      Touch somewhere in the paragraph and then 
      release the touch to trigger the touchend function. 
  </p> 
    <br> 
  
    <p id="test"></p> 
  
    <script> 
        function end() { 
            
            document.getElementById( 
              "test").innerHTML = 
              "Touch has been released."; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

觸摸屏幕之前:

觸摸屏幕後:

支持的網頁瀏覽器

  • IE瀏覽器
  • 穀歌瀏覽器
  • Firefox


相關用法


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