1. 程式人生 > >軟鍵盤彈起,導致底部被頂上去

軟鍵盤彈起,導致底部被頂上去

計算 界面 == doc 頂上 UNC 方法 else 元素

計算出可視界面的高度,當軟鍵盤彈起時讓底部元素隱藏掉, 當鍵盤收起時再讓它顯示,實在沒辦法時這種方法也不失為一種方法 var h=document.documentElement.clientHeight; $(window).resize(function(){ let height=document.documentElement.clientHeight; if(h==height){ $(‘.bottom‘).css(‘display‘,‘block‘); }else{ $(‘.bottom‘).css(‘display‘,‘none‘); } })

軟鍵盤彈起,導致底部被頂上去