nbagonet
8/29/2016 - 8:17 AM

解决安卓软键盘聚焦问题

解决安卓软键盘聚焦问题

解决安卓软键盘聚焦问题

A Pen by ShuoWang on CodePen.

License.

// Android 手机下, input 或 textarea 元素聚焦时, 主动滚一把
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);
    }
  })
}