Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Element.onlostpointercapture

この記事は技術レビューを必要としています。ぜひご協力ください

この記事はまだボランティアによって 日本語 に翻訳されていません。ぜひ MDN に参加して翻訳を手伝ってください!

onlostpointercapture is an EventHandler property of the Element interface that returns the event handler (function) for the lostpointercapture event type.

Syntax

var lostCaptureHandler = target.onlostpointercpature;

Return value

lostCaptureHandler
The lostpointercapture event handler for element target.

Example

<html>
<script>
function overHandler(ev) {
 // Determine the target event's lostpointercapture handler
 var lostCaptureHandler = ev.target.onlostpointercapture;
}
function init() {
 var el=document.getElementById("target");
 el.onpointerover = overHandler;
}
</script>
<body onload="init();">
<div id="target"> Touch me ... </div>
</body>
</html>

Specifications

Specification Status Comment
Pointer Events – Level 2
The definition of 'onlostpointercapture' in that specification.
Editor's Draft Non-stable version.
Pointer Events
The definition of 'onlostpointercapture' in that specification.
Recommendation Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support Not supported (Yes) [1] 10 Not supported Not supported
Feature Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support Not supported Not supported Not supported Not supported Not supported 10 Not supported Not supported

[1] Implementation withdrawn. See bug 1166347.

See also

ドキュメントのタグと貢献者

 このページの貢献者: rolfedh, AFBarstow
 最終更新者: rolfedh,