Vue加原生寫的app,上拉下拉空白,以及鍵盤收起下面空白的問題。

gml0000發表於2019-11-13

document.body.addEventListener('touchmove', function(e) {
                if(e._isScroller) return;
                e.preventDefault();
            }, {
                passive: false
            });
document.body.addEventListener("focusout", () => {
     
      setTimeout(() => {
        const scrollHeight =
          document.documentElement.scrollTop || document.body.scrollTop || 0;
        window.scrollTo(0, Math.max(scrollHeight - 1, 0));
      }, 100);
    });
 

 

相關文章