微信H5关闭下拉显示

微信h5页面下拉露出网页来源的解决办法,将document的touchmove事件禁止掉就行了

//禁止页面拖动
document.addEventListener('touchmove', function(e) {
e.preventDefault();
}, false);

猜你喜欢

转载自www.cnblogs.com/wendao-jhy/p/9880899.html
今日推荐