移动端的点击事件

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

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

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

$(".menu-o").on("touchstart",function () {
  console.log("233")
})
原文地址:https://www.cnblogs.com/supereast/p/10955001.html