//适用于安卓4-8,当调用键盘的时候将页面向上推
if (/Android [4-8]/.test(navigator.appVersion)) {
window.addEventListener('resize', function () {
if (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
window.setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded(true);
}, 0)
}
})
}
H5安卓键盘遮挡表单处理方法
最新推荐文章于 2024-08-06 23:00:00 发布