这篇翻译不完整。请帮忙从英语翻译这篇文章。
A global event handler
for the touchmove
event.
注意:这个属性还没有正式的标准。它在 Touch Events – Level 2 Editor's 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 | Editor's Draft | Non-stable version. |
Browser compatibility
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 |