validator.w3.org正在引发错误:
此时不允许在元素div上使用ontouchmove属性。
关于以下代码:

<div id="someDiv" ontouchmove="onTouchmove(event)" ontouchend="noTouch(event)"></div>

Doctype为:
<!DOCTYPE HTML>

触摸事件允许在哪些元素上进行?

最佳答案

把它放在外面
对于jQuery,它看起来像:

$('#someDiv').live('ontouchmove',function(e){
    onTouchmove(e);
});

$('#someDiv').live('ontouchend',function(e){
    noTouch(e);
});

08-25 16:08