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

加入如下代码:

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);
        }
      });
}

你可能感兴趣的:(解决安卓机软键盘弹出遮挡输入框的问题)