解决安卓手机键盘遮挡输入框问题
2020-07-23 本文已影响0人
勤的空间
//处理键盘遮挡问题
window.addEventListener('resize', function () {
if (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
window.setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded()
}, 0)
}
})