GlobalEventHandlers.ongotpointercapture
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/fr/web/api/html_dom_api/index.md)
La propriété ongotpointercapture
du mixin GlobalEventHandlers
est un gestionnaire d'évènement qui traite les évènements de type gotpointercapture
.
Syntaxe
js
target.ongotpointercapture = functionRef;
Valeur
functionRef
est un nom de fonction ou une expression fonction. La fonction accepte un objet FocusEvent
en tant qu'unique argument.
Example
js
function overHandler(event) {
// Obtient le gestionnaire de type "gotpointercapture" de la cible de l'événement
let gotCaptureHandler = event.target.ongotpointercapture;
}
function init() {
let el = document.getElementById("target");
el.ongotpointercapture = overHandler;
}
Spécifications
Specification |
---|
Pointer Events # the-gotpointercapture-event |
Pointer Events # dom-globaleventhandlers-ongotpointercapture |
Compatibilité des navigateurs
BCD tables only load in the browser
Voir aussi
- L'évènement
Document: gotpointercapture
- L'évènement
Element: gotpointercapture
Element.setPointerCapture()