微信h5頁面下拉露出網頁來源的解決辦法,將document的touchmove事件禁止掉就好了微信
//禁止頁面拖動document.addEventListener('touchmove', function(e) {e.preventDefault();}, false);事件