微信内置浏览器浏览H5页面弹出的键盘遮盖文本框的解决办法
在main,js直接引入即可
window.addEventListener("resize", function() {
if (
document.activeElement.tagName == "INPUT" ||
document.activeElement.tagName == "TEXTAREA"
) {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
});