当用户将手指从元素上移开时,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
相关用法
- HTML oninvalid事件用法及代码示例
- HTML onfocus事件用法及代码示例
- HTML onscroll事件用法及代码示例
- HTML onplay事件用法及代码示例
- HTML onplaying事件用法及代码示例
- HTML onprogress事件用法及代码示例
- HTML onratechange事件用法及代码示例
- HTML onreset事件用法及代码示例
- HTML ondrop事件用法及代码示例
- HTML ondblclick事件用法及代码示例
- HTML oncut事件用法及代码示例
- HTML oncopy事件用法及代码示例
- HTML ondragend事件用法及代码示例
- HTML ondurationchange事件用法及代码示例
- HTML ondragstart事件用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM touchend Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。