微信瀏覽器裏在底部的輸入框,ios11的不會被遮蓋、10.1會被蓋住

/** * 因爲ios10 和 ios11 版本之間的差別,因此先判斷ios系統版本以後再作處理 */ let str = navigator.userAgent.toLowerCase(); let ver = str.match(/cpu iphone os (.*?) like mac os/)[1].replace(/_/g,"."); let oc = ver.split('.')[0]; if(oc > 10){ // ios11 不作處理 return true; }else{ this.timer = setInterval(function() { console.log('輸入框獲取到焦點'); document.body.scrollTop = document.body.scrollHeight; }, 200); }
相關文章
相關標籤/搜索