jquery mobile中点击事件问题

jquery mobile中点击事件问题

click事件在手机web端有200~300ms的延迟

tap事件在web端无延迟,可以用touch事件替代

touch事件包括touchstart,touchmove,touchend,touchcancel

touchstart:当手指触摸到屏幕会触发;

touchmove:当手指在屏幕上移动时,会触发;

touchend:当手指离开屏幕时,会触发;

touchcancel:许多人不知道它在什么时候会被触发而忽略它,其实当你的手指还没有离开屏幕时,有系统级的操作发生时就会触发touchcancel,例如alert和confirm弹框,又或者是Android系统的功能弹窗。

触发顺序:touchstart -> touchmove -> …… -> touchmove ->touchend

但是touchmove可能在部分机型上有bug导致无法触发touchend