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

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

相关文章: