總結(jié)
微信里打開h5頁面,點(diǎn)擊輸入框,再把軟鍵盤收起,發(fā)現(xiàn)頁面沒變,但是按鈕,輸入框的位置邊了
在獲取輸入框失去焦點(diǎn)時(shí)候:
inputBlur () {
? ? ? setTimeout(() => {
? ? ? ? if (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
? ? ? ? ? return;
? ? ? ? }
? ? ? ? if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) { // 判斷iPhone|iPad|iPod|iOS
? ? ? ? ? this.valRes = 'ios';
? ? ? ? } else if (/(Android)/i.test(navigator.userAgent)) { // 判斷Android
? ? ? ? ? this.valRes = 'android';
? ? ? ? }
? ? ? ? if (this.valRes === 'ios') {
? ? ? ? ? document.activeElement.scrollIntoViewIfNeeded(true);
? ? ? ? }
? ? ? }, 10);
? ? },