Наши волонтёры ещё не перевели данную статью на Русский. Присоединяйтесь к нам и помогите сделать эту работу!
Вы можете также прочитать эту статью на English (US).
The onpointerenter
property of the GlobalEventHandlers
mixin is an EventHandler
that processes pointerenter
events.
Syntax
var enterHandler = targetElement.onpointerenter;
Return value
enterHandler
- The
pointerenter
event handler for elementtargetElement
.
Example
This example shows two ways to use onpointerenter
to set an element's pointerenter
event handler.
<html> <script> function enterHandler(ev) { // Process the pointerenter event } function init() { let el = document.getElementById('target1'); el.onpointerenter = enterHandler; } </script> <body onload="init();"> <div id="target1"> Touch me ... </div> <div id="target2" onpointerenter="enterHandler(event)"> Touch me ... </div> </body> </html>
Specifications
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onpointerenter' in that specification. |
Working Draft | Non-stable version |
Pointer Events The definition of 'onpointerenter' 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: pointerenter
eventElement: pointerenter
event
Метки документа и участники
Метки:
Внесли вклад в эту страницу:
wbamberg,
mfluehr,
fscholz,
chrisdavidmills,
erikadoyle,
jpmedley,
rolfedh,
Sebastianz,
AFBarstow
Обновлялась последний раз:
wbamberg,