这篇文章需要技术复核。如何帮忙。
我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
ongotpointercapture
is an EventHandler
property of the Element
interface that returns the event handler (function) for the gotpointercapture
event type.
Syntax
var gotCaptureHandler = target.ongotpointercpature;
Return value
gotCaptureHandler
- The gotpointercapture event handler for element
target
.
Example
<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.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 'ongotpointercapture' in that specification. |
Editor's Draft | Non-stable version. |
Pointer Events The definition of 'ongotpointercapture' 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.