I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Unisciti a noi e traducilo tu stesso.
Puoi anche consultare l’articolo in English (US).
The onpointercancel
property of the GlobalEventHandlers
mixin is an EventHandler
that processes pointercancel
events.
Syntax
var cancelHandler = targetElement.onpointercancel;
Return value
cancelHandler
- The
pointercancel
event handler for elementtargetElement
.
Example
This example shows two ways to use onpointercancel
to handle an element's pointercancel
events.
<html> <script> function cancelHandler(ev) { // Process the pointercancel event } function init() { var el = document.getElementById('target1'); el.onpointercancel = cancelHandler; } </script> <body onload="init();"> <div id="target1"> Touch me ... </div> <div id="target2" onpointercancel="cancelHandler(event)"> Touch me ... </div> </body> </html>
Specifications
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onpointercancel' in that specification. |
Working Draft | Non-stable version |
Pointer Events The definition of 'onpointercancel' in that specification. |
Recommendation | Initial definition |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome Full support 35 | Edge Full support Yes | Firefox
Full support
59
| IE
Full support
11
| Opera ? | Safari No support No | WebView Android Full support 37 | Chrome Android Full support 35 | Edge Mobile Full support Yes | Firefox Android
Full support
29
| Opera Android ? | Safari iOS No support No | Samsung Internet Android ? |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- User must explicitly enable this feature.
- User must explicitly enable this feature.
- Uses a non-standard name.
- Uses a non-standard name.
See also
Document: pointercancel
eventElement: pointercancel
event
Tag del documento e collaboratori
Tag:
Hanno collaborato alla realizzazione di questa pagina:
wbamberg,
mfluehr,
fscholz,
chrisdavidmills,
erikadoyle,
jpmedley,
rolfedh,
Sebastianz,
AFBarstow
Ultima modifica di:
wbamberg,