window.addEventListener("resize", function() {
if (
document.activeElement.tagName == "INPUT" ||
document.activeElement.tagName == "TEXTAREA"
) {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
});
将以上代码复制到页面代码或将直接引入至main.js文件