結構以下 css
咱們須要作的就是當聚焦評論框的時候,ios
須要讓鍵盤頂起評論框。在ios
系統中,當鍵盤彈起的時候,會擠壓頁面,評論框會天然在頂部,可是有個問題就是,下面的評論框會不貼底,露出下面的東西,因此在ios12
以前的解決辦法就是在評論框觸發focus
的時候讓頁面滾動到底部,代碼以下:java
const body = document.dcumentElement.scrollTop ? document.documentELement : document.body;
const {scrollHeight, scrollTop} = body;
const innerHeight = Math.min(window.innerHeight, document.documentElement.clientHeight);
body.scrollTop = scrollHeight - innerHeight;
複製代碼
若是輸入框失去焦點,就讓頁面滾動到先前的位置。 代碼以下:ios
body.scrollTop = scrollTop; // 滾動到先前的位置
複製代碼
這種方案在ios12
上會出現兩個問題:佈局
而後我本身分析了一下這個問題,出現各類狀況的緣由是由於彈出鍵盤時,頁面可以滾動,因而就出現了各類問題,那乾脆讓頁面沒法滾動。ios11
及以前使用了下面的佈局:ui
.parent {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
複製代碼
而且禁止了touchmove
事件,這樣可以讓頁面沒法滾動,可是ios12
並無什麼卵用。仍是可以滾動,那我們就讓內容就一屏,多的被截掉。下面是輸入框focus
的代碼:spa
const {scrollHeight,scrollTop} = body;
const innerHeight = Math.min(window.innerHeight, document.documentElement.clientHeight);
body.style.height = `${innerHeight}px`;
body.style.overflow = 'hidden';
複製代碼
而後就是輸入框觸發blur
事件時的代碼:code
body.style.height = `${scrollHeight}px`;
body.style.overflow = 'auto';
body.style.scrollTop = scrollTop;
複製代碼
在這裏須要從新設置body
的高度,高度爲以前獲取的scrollHeight
,由於咱們須要從新滾動到先前的位置,建議不要設置height
爲auto
,由於在一些場景下咱們可能須要監聽滾動事件,會出現其餘的問題(穩戰穩打才能打勝仗)。而後從新設置body
的overflow
,讓頁面可以滾動,最後滾動到先前的位置。cdn