2塘

生命本应极度清明而免于杂乱无章

7.ios键盘消失后页面下方空白问题--vue

   ios系统微信版存在bug,input框获取焦点后键盘弹出,页面被顶起,但键盘消失时,页面没有回弹,下面存在空白区域

  1. 在input标签中添加事件 @focus="getFocus('className')"
  2. 在methods中添加方法,手动让页面滚回到原来位置
      getFocus (className) {
          // 一定要有第三个参数 true
          document.getElementsByClassName(className)[0].addEventListener("blur", this.autoScroll, true)
        },
        autoScroll () {
          window.scroll(0, 0);
        },

     

posted @ 2020-02-19 19:28  2塘  阅读(291)  评论(0编辑  收藏  举报