Document: lostpointercapture イベント

Invalid slug for templ/sidebar: conflicting/Web/API/Element/lostpointercapture_event

lostpointercapture イベントは、ポインターのキャプチャが解放されたときに発生します。

バブリング なし
キャンセル可能 いいえ
インターフェイス PointerEvent
イベントハンドラープロパティ onlostpointercapture

この例は lostpointercapture イベントを待ち受けし、 pointerdown でその要素のためにポインターをキャプチャします。後でユーザーがポインターを解放したとき、 lostpointercapture イベントが発生します。

js
const para = document.querySelector("p");

document.addEventListener("lostpointercapture", () => {
  console.log("I've been released!");
});

para.addEventListener("pointerdown", (event) => {
  para.setPointerCapture(event.pointerId);
});

同じ例ですが、 onlostpointercapture イベントハンドラーを使用して行います。

js
const para = document.querySelector("p");

document.onlostpointercapture = () => {
  console.log("I've been released!");
};

para.addEventListener("pointerdown", (event) => {
  para.setPointerCapture(event.pointerId);
});

仕様書

No specification found

No specification data found for undefined.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

ブラウザーの互換性

関連情報