手持上click事件的响应速度远远不如touchstart。但是仅仅写touch事件很不方便web端开发测试,所以下边的判断很有必要。
var isSupportTouch = "ontouchend" in document ? true : false, touchEv = isSupportTouch ? 'touchstart' : 'mousedown', touchEndEv = isSupportTouch ? "touchend" : 'mouseup';
另外:
var isSupportTouch = "ontouchend" in document ? true : false, touchEv = isSupportTouch ? 'touchstart' : 'click';
用起来就很方便啦
$obj.on(touchEv,function(){ \\事件 });
还有一种写法:
isTouch = !!navigator.userAgent.match(/AppleWebKit.*Mobile.*/);,
eStart = isTouch ? 'touchstart' : 'mousedown',
eMove = isTouch ? 'touchmove' : 'mousemove',
eEnd = isTouch ? 'touchend' : 'mouseup';
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。