美文网首页
解决安卓机软键盘弹出遮挡输入框的问题

解决安卓机软键盘弹出遮挡输入框的问题

作者: 不想起床_9a42 | 来源:发表于2022-07-17 13:27 被阅读0次

    加入如下代码:

    if ((/Android/gi).test(navigator.userAgent)) {
          window.addEventListener('resize', function () {
            if (document.activeElement.tagName == 'INPUT' ||
              document.activeElement.tagName == 'TEXTAREA') {
              window.setTimeout(function () {
                document.activeElement.scrollIntoViewIfNeeded();
              }, 0);
            }
          });
    }

    相关文章

      网友评论

          本文标题:解决安卓机软键盘弹出遮挡输入框的问题

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