时间:2021-06-06 08:49:13 | 栏目:vue | 点击:次
在用vue-cli脚手架搭建手机H5页面应用的时候,其中一页中部有input,底部有position:absolute;bottom:0的元素,
当点击input框时在安卓手机上出现了:
1 虚拟键盘弹出盖住input
2 底部定位的元素被挤上来
网络上很多关于body设定宽高以及scrolltop的方法都不管用,因为这里是路由页面,根据网上的思路,吊起输入键盘的时候页面的高度是变化的,监听window.onresize,判断是否吊起键盘,然后设定底部模块的隐藏和显示,整个块元素的margintop就可以实现了。
代码如下
mounted () { this.clientHeight = document.documentElement.clientHeight; const that = this; // 安卓手机键盘吊起挡住输入框 window.onresize = function() { if(document.documentElement.clientHeight < that.clientHeight) { // scrollVal为负值 let scrollVal = document.documentElement.clientHeight-that.clientHeight; $(".alert-main").css("marginTop",scrollVal); $(".bottom-create").hide(); }else { $(".alert-main").css("marginTop",0); $(".bottom-create").show(); } }; },
今天这个bug 遇到了新问题,同样的华为手机上,当从别的路由吊起输入键盘的时候回到当前路由,
document.documentElement.clientHeight 就变成了减去输入键盘高度的值,
这时需要在页面第一次加载将document.documentElement.clientHeight记录到store中,store中的值不会因为页面重新渲染而改变。