var isClick = true;
$('li').on('touchstart', function(e){
	  isClick = true;
});
$('li').on('touchmove', function(e){
	  isClick = false;
});
$('li').on('touchend', function(e){
	  if (isClick == true){
	    console.log("触发点击事件");
	  }
})


相关文章: