window.addEventListener('resize', () => {
if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
window.setTimeout(() => {
if ('scrollIntoView' in document.activeElement) {
document.activeElement.scrollIntoView();
} else {
document.activeElement.scrollIntoViewIfNeeded();
}
}, 50);
}
});
解决 h5 唤起键盘后,导致了页面偏移。
最新推荐文章于 2024-08-16 09:41:19 发布