input或者textarea被输入法挡住

2020-08-31  本文已影响0人  刘佳季

window.addEventListener('resize', function () {

              if (document.activeElement.tagName == 'INPUT' || 'TEXTAREA') {

                  window.setTimeout(function () {

                      document.activeElement.scrollIntoViewIfNeeded();

                  }, 100);

              }

          }.bind(this));

上一篇下一篇

猜你喜欢

热点阅读