H5键盘遮挡问题解决

  window.addEventListener('resize', function () {
          console.log('02');
          if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {
            window.setTimeout(function () {
              console.log('03');

              document.activeElement.scrollIntoViewIfNeeded();
            }, 0);
          }
        })
      }
posted @ 2018-08-08 14:59  xiezhenzhong  阅读(400)  评论(0编辑  收藏  举报