GlobalEventHandlers.ontouchmove
A global event handler
for the touchmove (en-US)
event.
注意:这个属性还没有正式的标准。它在 Touch Events – Level 2 Draft 说明书里被规定且不在 Touch Events Recommendation中。这个属性没有被广泛应用。
Syntax
var moveHandler = someElement.ontouchmove;
Return value
moveHandler
- The touchmove event handler for element
someElement
.
Example
This example shows two ways to use ontouchmove to set an element's touchmove event handler.
<html>
<script>
function moveTouch(ev) {
// Process the event
}
function init() {
var el=document.getElementById("target1");
el.ontouchmove = moveTouch;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" ontouchmove="moveTouch(event)"> Touch me ... </div>
</body>
</html>
Specifications
Specification | Status | Comment |
---|---|---|
Touch Events – Level 2 | Draft | Non-stable version. |
Browser compatibility
We're converting our compatibility data into a machine-readable JSON format.
This compatibility table still uses the old format,
because we haven't yet converted the data it contains.
Find out how you can help! (en-US)
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support |
Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support |