微信h5页面下拉露出网页来源的解决办法,将document的touchmove事件禁止掉就行了
//禁止页面拖动document.addEventListener('touchmove', function(e) { e.preventDefault();}, false);