欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决vue-cli单页面手机应用input点击手机端虚拟键盘弹出盖住input问题

程序员文章站 2022-06-23 12:18:42
在用vue-cli脚手架搭建手机h5页面应用的时候,其中一页中部有input,底部有position:absolute;bottom:0的元素, 当点击input框时在安...

在用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中的值不会因为页面重新渲染而改变。

以上这篇解决vue-cli单页面手机应用input点击手机端虚拟键盘弹出盖住input问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。