1. 程式人生 > >解決鍵盤彈出底部導航被頂上來的bug

解決鍵盤彈出底部導航被頂上來的bug

height play 底部 var pan foo splay isp size

代碼如下:

function focus_footer(h){
    window.onresize = function() {
      if (document.body.scrollHeight < h) {
        document.getElementById(‘footer‘).style.display = "none";
      } else {
        document.getElementById(‘footer‘).style.display = "block";
      }
    };
}

最後一步就在需要的頁面執行:

var
h = document.body.scrollHeight; focus_footer(h);

解決鍵盤彈出底部導航被頂上來的bug