在表单中绑定 聚焦以及市区焦点事件即可:
blurHandel = () => {
window.ST = setTimeout(() => {
window.scrollTo(0, 250);
}, 140)
}
ocusHandel = () => {
clearTimeout(window.ST)
const u = navigator.userAgent;
let isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1;
if (isAndroid) {
setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded();
document.activeElement.scrollIntoView();
}, 500);
}
}