解决键盘弹出后挡表单的问题(ios)

前端之家收集整理的这篇文章主要介绍了解决键盘弹出后挡表单的问题(ios)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
解决键盘弹出后挡表单的问题
    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);
      }
    });

猜你在找的程序笔记相关文章