js手机浏览器浏览WebApp弹出的键盘遮盖住文本框的解决办法

if(window.navigator.userAgent.indexOf('Android') > -1 || window.navigator.userAgent.indexOf('Adr') > -1) {
window.addEventListener("resize", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}
上一篇:Python mysql-数据库基础知识


下一篇:安装office2016时弹出microsoft setup bootstrapper已停止工作的解决办法