美文网首页
input或者textarea被输入法挡住

input或者textarea被输入法挡住

作者: 刘佳季 | 来源:发表于2020-08-31 15:50 被阅读0次

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

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

                  window.setTimeout(function () {

                      document.activeElement.scrollIntoViewIfNeeded();

                  }, 100);

              }

          }.bind(this));

相关文章

    本文标题:input或者textarea被输入法挡住

    本文链接:https://www.haomeiwen.com/subject/zzuvsktx.html