H5页面开发的touchmove事件

在做一屏滚动的H5页面的时候,必须移除touchmove事件,如果不移除,在安卓机上会触发微信原生的向下滚动拉出刷新。在IOS上出现上下都可以继续滑动,所以需要移除document的touchmove事件。

$(document).on('touchmove',function(event){
    event.preventDefault();
});

 

posted @ 2016-04-21 11:18  黑客PK  阅读(1466)  评论(0编辑  收藏  举报