window属性:ongotpointercapture
ongotpointercapture属性
ongotpointercapture EventHandler属性返回gotpointercapture事件类型的事件处理函数。
ongotpointercapture属性语法
window.ongotpointercapture = functionReference
ongotpointercapture属性示例
<html>
<script>
function overHandler(ev) {
// Determine the target event's gotpointercapture handler
var gotCaptureHandler = ev.target.ongotpointercapture;
}
function init() {
var el=document.getElementById("target");
el.ongotpointercapture = 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 |