阅读背景:

移动端 解决键盘弹出后挡表单的问题

来源:互联网 
// 解决键盘弹出后挡表单的问题
    window.addEventListener('resize', function() {
      if(
        document.activeElement.tagName === 'INPUT' ||
        document.activeElement.tagName === 'TEXTAREA'
      ) {
        window.setTimeout(function() {
          if('scrollIntoView' in document.activeElement) {
            document.activeElement.scrollIntoView();
          } else {
            document.activeElement.scrollIntoViewIfNeeded();
          }
        }, 0);
      }
    });
// 解决键盘弹出后挡表单的问题
    window.addEventListene



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: