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

onlostpointercapture es una propiedad EventHandler de la interfaz Element  que devuelve el controlador de eventos (función) para el evento tipo lostpointercapture .

Síntasix

var lostCaptureHandler = target.onlostpointercpature;

Valor de Retorno

lostCaptureHandler
El controlador de eventos  lostpointercapture para el elemento target.

Ejemplo

<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>

Especificaciones

Especificación Estado Comentario
Pointer Events – Level 2
The definition of 'onlostpointercapture' in that specification.
Editor's Draft Versión no estable.
Pointer Events
The definition of 'onlostpointercapture' in that specification.
Recommendation Definición inicial.

Compatibilidad en los Navegadores

Función Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Soporte Básico No support (Yes) [1] 10 No support No support
Función Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Soporte Básico No support No support No support No support No support 10 No support No support

[1] Implementación retirada. Ver bug 1166347.

Ver también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: SoftwareRVG
 Última actualización por: SoftwareRVG,