aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html')
-rw-r--r--files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html70
1 files changed, 70 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html b/files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html
new file mode 100644
index 0000000000..170fdf6e02
--- /dev/null
+++ b/files/ja/web/api/globaleventhandlers/ongotpointercapture/index.html
@@ -0,0 +1,70 @@
+---
+title: GlobalEventHandlers.ongotpointercapture
+slug: Web/API/GlobalEventHandlers/ongotpointercapture
+tags:
+ - API
+ - Event Handler
+ - GlobalEventHandlers
+ - HTML DOM
+ - Property
+ - Reference
+ - events
+ - ongotpointercapture
+translation_of: Web/API/GlobalEventHandlers/ongotpointercapture
+---
+<div>{{ApiRef("HTML DOM")}}</div>
+
+<p><strong><code>ongotpointercapture</code></strong> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、 {{event("gotpointercapture")}} イベントを処理する {{domxref("EventHandler")}} です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>target</var>.ongotpointercapture = <var>functionRef</var>;</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p><code><var>functionRef</var></code> は、関数名または<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。 関数は {{domxref("PointerEvent")}} オブジェクトを唯一の引数として受け取ります。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js notranslate">function overHandler(event) {
+ // ターゲットイベントの gotpointercapture ハンドラを決定します
+ let gotCaptureHandler = event.target.ongotpointercapture;
+}
+
+function init() {
+ let el = document.getElementById('target');
+ el.ongotpointercapture = overHandler;
+}</pre>
+
+<h2 id="Specification" name="Specification">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Pointer Events 2', '#the-gotpointercapture-event', 'ongotpointercapture')}}</td>
+ <td>{{Spec2('Pointer Events 2')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.GlobalEventHandlers.ongotpointercapture")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><code><a href="/ja/docs/Web/API/Document/gotpointercapture_event">Document: gotpointercapture</a></code> イベント</li>
+ <li><code><a href="/ja/docs/Web/API/HTMLElement/gotpointercapture_event">HTMLElement: gotpointercapture</a></code> イベント</li>
+ <li>{{domxref("Element.setPointerCapture()")}}</li>
+</ul>