在做一屏滚动的H5页面的时候,必须移除touchmove事件,如果不移除,在安卓机上会触发微信原生的向下滚动拉出刷新。在IOS上出现上下都可以继续滑动,所以需要移除document的touchmove事件。
$(document).on(‘touchmove‘,function(event){ event.preventDefault(); });
时间: 2024-10-06 00:59:17
在做一屏滚动的H5页面的时候,必须移除touchmove事件,如果不移除,在安卓机上会触发微信原生的向下滚动拉出刷新。在IOS上出现上下都可以继续滑动,所以需要移除document的touchmove事件。
$(document).on(‘touchmove‘,function(event){ event.preventDefault(); });