touchend(ontouchend)イベント
touchend(ontouchend)イベントは、タッチベースのデバイスにおいて指が離れると発生するイベントです。
Safari、Operaブラウザでは対応していません。
タッチイベントには下記のイベントがあります。
構文(Syntax)
in HTML
<tagelement ontouchend="function()">
in JavaScript
object.ontouchend = function(){ };
object.addEventListener("touchend", script_);
備考(Remarks)
| |
Bubbles | Yes |
Cancelable | Yes |
Interface | TouchEvent |
Supported HTML Elements | ALL HTML elements |