js如何屏蔽触屏的点击事件 当运行到该页面时候 ,该页面的触屏点击事件都屏蔽掉1. 重写touchstart touchmove等事件,让这些事件什么也不做例如: document.ontouchstart = funciton(){ return false}2. 取消事件冒泡的行为 3 把你的触屏事件删除掉挺麻烦2023-02-21JavaScript340