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


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