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


HTML touchcancel事件用法及代碼示例


當觸摸事件被中斷時,touchcancel事件用於執行腳本。如果設備以不同的動作中斷觸摸事件,則包括touchcancel事件以清理代碼是一種很好的做法。

用法:

object.ontouchcancel = myScript;

下麵的程序演示了touchcancel事件:示例1:觸摸中斷時執行JavaScript。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>touchcancel Event in HTML</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>touchcancel Event</h2> 
    <br> 
  
    <p ontouchcancel="cancel()"> 
      Touch somewhere in the paragraph while 
      you do something that will interrupt the event.</p> 
    <br> 
  
    <p id="test"></p> 
  
    <script> 
        function cancel() { 
            
            document.getElementById( 
              "test").innerHTML =  
              "Touch Cancelled due to interruption"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
觸摸屏幕之前:

觸摸屏幕後:

支持的瀏覽器:

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


相關用法


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