window属性:onlostpointercapture
onlostpointercapture属性
GlobalEventHandlers接口的onlostpointercapture EventHandler属性返回lostpointercapture事件类型的事件处理程序(函数)。
onlostpointercapture属性语法
window.onlostpointercapture = functionReference
onlostpointercapture属性示例
<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.onlostpointercapture = overHandler;
}
</script>
<body onload="init();">
<div id="target"> Touch me ... </div>
</body>
</html>
规范
规范 | 状态 | 注释 |
---|---|---|
Pointer Events – Level 2 该规范中'onlostpointercapture'的定义。 | Working Draft |
浏览器兼容性
我们正在将兼容性数据转换为机器可读的JSON格式。
- 电脑端
特征 | Chrome | Edge | Firefox(Gecko) | Internet Explorer | Opera | Safari(WebKit) |
---|---|---|---|---|---|---|
基本支持 | 支持:57.0 | ? | ? | ? | 支持:44 | ? |
- 移动端
特征 | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
基本支持 | 不支持 | 支持:57.0 | ? | ? | ? | ? | 支持:44 | ? | 支持:57.0 |