Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.ontouchmove

这篇翻译不完整。请帮忙从英语翻译这篇文章

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                

See also

文档标签和贡献者

 此页面的贡献者: zhangqiong
 最后编辑者: zhangqiong,