HTML5 屏蔽触屏滚动时间:2023-03-09 13:39:45 开发移动的html应用时常常需要将网页触控事件屏蔽掉。代码如下: //屏蔽全局触控事件 document.ontouchmove = function(e){ e.preventDefault();} 来自互联网