h5 软键盘存在的一些问题
1、在ios中,sarafi或者uc,软键盘会把fixed顶起来
window.addEventListener("resize",()=>{
setTimeout(()=>{
this.show = window.innerHeight == this.innerHeight
})
})
显示隐藏的方案
2、在微信中,软键盘会导致页面被顶起,收起后不会回落
<input type="type" @blur="mixWeChat">
...
mixWeChat(){
if(this.$store.state.ua.type === 'WeChat'){
document.body.scrollTop = document.documentElement.scrollTop = 0;
}
}