微信内置浏览器H5 弹出键盘 遮盖文本框解决办法

if(/Android [4-6]/.test(navigator.appVersion)) {
window.addEventListener("resize", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}

猜你喜欢

转载自www.cnblogs.com/tonnytong/p/10049558.html