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

2022-07-17  本文已影响0人  不想起床_9a42

加入如下代码:

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);
        }
      });
}
上一篇 下一篇

猜你喜欢

热点阅读