問題:iphone5s頁面鍵盤彈起后離開頁面,再次進(jìn)入頁面鍵盤還是彈起狀態(tài)牡属,用戶體驗(yàn)不友好票堵。
解決方法:在router中添加一個(gè)全局的監(jiān)聽,在router改變之前讓頁面所有的輸入框失去焦點(diǎn)
const router = new Router({
base: '/base/',
mode: 'history',
routes: [
{ ... }
]
});
router.beforeEach((to, form, next) => {
//讓所有的輸入框失去焦點(diǎn)
document.activeElement.blur();
next();
});