--- title: GlobalEventHandlers.onlostpointercapture slug: Web/API/GlobalEventHandlers/onlostpointercapture tags: - API - Event Handler - GlobalEventHandlers - HTML DOM - Property - Reference - events - onlostpointercapture translation_of: Web/API/GlobalEventHandlers/onlostpointercapture ---
{{ApiRef("HTML DOM")}}

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

構文

target.onlostpointercapture = functionRef;

functionRef は、関数名または関数式です。 関数は {{domxref("PointerEvent")}} オブジェクトを唯一の引数として受け取ります。

function overHandler(event) {
  // ターゲットイベントの lostpointercapture ハンドラを決定します
  let lostCaptureHandler = event.target.onlostpointercapture;
}

function init() {
  let el = document.getElementById('target');
  el.onlostpointercapture = overHandler;
}

仕様

仕様 状態 コメント
{{SpecName('Pointer Events 2', '#the-lostpointercapture-event', 'onlostpointercapture')}} {{Spec2('Pointer Events 2')}}

ブラウザーの互換性

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

関連情報