欢迎来到吴小小的专栏!

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);
        }
    })
}
posted @ 2017-11-14 09:45  吴小小  Views(1003)  Comments(0Edit  收藏  举报