在IOS和安卓中键盘弹起挡住输入框或者页面的解决方案
我这里底部有个position:fixed;定位,移动端调起键盘是时挡住了输入框和页面,网上贴吧贴吧解决了这个问题,就是在调起键盘时取消定位,取消后自动在页面底部
data(){
return{
oldFullHeight: 0, // 屏幕高度
select_show:true, // 键盘弹起状态
}
}
// 解决移动端唤起键盘输入框被挡住问题
this.oldFullHeight = document.documentElement.clientHeight // 默认高度
const self = this;
window.onresize = () => {
if (self.oldFullHeight) {
self.select_show = document.documentElement.clientHeight === self.oldFullHeight;
console.log("self.select_show",self.select_show)
// 微信浏览器页面滚动到底
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
};