标签:
在做一屏滚动的H5页面的时候,必须移除touchmove事件,如果不移除,在安卓机上会触发微信原生的向下滚动拉出刷新。在IOS上出现上下都可以继续滑动,所以需要移除document的touchmove事件。
$(document).on(‘touchmove‘,function(event){ event.preventDefault(); });
H5页面开发的touchmove事件
原文地址:http://www.cnblogs.com/qianduanjingying/p/5416186.html