美文网首页
部分ios手机软键盘关闭,软键盘弹起位置空白占位问题

部分ios手机软键盘关闭,软键盘弹起位置空白占位问题

作者: 飞鹰_007 | 来源:发表于2020-08-31 19:06 被阅读0次

问题和解决原理:部分ios手机在收起手机软键盘后,弹起软键盘的位置留白占位。监听输入框失去焦点,窗口回到顶部,迫使界面恢复正常。

<template>

    <input @blur="loseFocus">

  </template>

  <script>

  export default {

    methods() {

      loseFocus() {

        setTimeout(() => {

          window.scrollTo(0, 0);

        }, 100);

      }

    },

  }

  </script>

相关文章

网友评论

      本文标题:部分ios手机软键盘关闭,软键盘弹起位置空白占位问题

      本文链接:https://www.haomeiwen.com/subject/xrdpsktx.html