vue input唤起键盘 底部固定的按钮等标签被顶上去

js部分
data() {
return {
hidshow: true // 显示或者隐藏底部提交部分
};
},
在这里插入图片描述
mounted() {
const ua = window.navigator.userAgent;
if (ua.indexOf(‘Android’) > -1 || ua.indexOf(‘iPhone’) > -1) {
const docmHeight = document.body.clientHeight;// 默认屏幕高度
window.onresize = () => {
var nowHeight = document.body.clientHeight;// 实时屏幕高度
if (docmHeight !== nowHeight) {
this.hidshow = false;
} else {
this.hidshow = true;
}
};
}
},
vue input唤起键盘 底部固定的按钮等标签被顶上去_第1张图片
vue部分
vue input唤起键盘 底部固定的按钮等标签被顶上去_第2张图片

你可能感兴趣的:(页面布局--js)