当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。