From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../api/globaleventhandlers/ontouchend/index.html | 83 ++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 files/ja/web/api/globaleventhandlers/ontouchend/index.html (limited to 'files/ja/web/api/globaleventhandlers/ontouchend') diff --git a/files/ja/web/api/globaleventhandlers/ontouchend/index.html b/files/ja/web/api/globaleventhandlers/ontouchend/index.html new file mode 100644 index 0000000000..4d748dcb31 --- /dev/null +++ b/files/ja/web/api/globaleventhandlers/ontouchend/index.html @@ -0,0 +1,83 @@ +--- +title: GlobalEventHandlers.ontouchend +slug: Web/API/GlobalEventHandlers/ontouchend +tags: + - API + - Experimental + - HTML DOM + - Reference + - TouchEvent +translation_of: Web/API/GlobalEventHandlers/ontouchend +--- +
{{ApiRef("HTML DOM")}} {{SeeCompatTable}}
+ +

ontouchstart は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、 {{event("touchstart")}} イベントを処理する {{domxref("EventHandler")}} です。

+ +
+

注: このプロパティは公式には標準化されていません。これは {{SpecName('Touch Events 2')}} {{Spec2('Touch Events 2')}} 仕様書で定義されているものであり、 {{SpecName('Touch Events')}} {{Spec2('Touch Events')}} では定義されていません。このプロパティは広く実装されているわけではありません。

+
+ +

構文

+ +
var endHandler = targetElement.ontouchend;
+
+ +

返値

+ +
+
endHandler
+
要素 targetElementtouchend イベントハンドラー。
+
+ +

+ +

この例では、ontouchend を使用して要素の touchend イベントを処理する2つの方法を示します。

+ +
<html>
+<script>
+function endTouch(ev) {
+  // イベントの処理
+}
+function init() {
+  let el = document.getElementById('target1');
+  el.ontouchend = endTouch;
+}
+</script>
+
+<body onload="init();">
+  <div id="target1"> Touch me ... </div>
+  <div id="target2" ontouchend="endTouch(event)"> Touch me ... </div>
+</body>
+</html>
+
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Touch Events 2','#dom-globaleventhandlers-ontouchend')}}{{Spec2('Touch Events 2')}}非安定版
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.GlobalEventHandlers.ontouchend")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf