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));