微信内置浏览器浏览H5页面弹出的键盘遮盖文本框

微信内置浏览器浏览H5页面弹出的键盘遮盖文本框

解决办法:

window.addEventListener("resize", function() {
    if(document.activeElement.tagName == "INPUT" || document.activeElement.tagName == "TEXTAREA") {
        window.setTimeout(function() {
            document.activeElement.scrollIntoViewIfNeeded();
        }, 0);
    }
    })

猜你喜欢

转载自blog.csdn.net/weixin_44363139/article/details/107782347