ios中软键盘能自动把页面往上面推

//安卓软键盘弹起
    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();
                },10);
            }
        })
    }

H5安卓软键盘挡住了输入框H5安卓软键盘挡住了输入框

调整了之后的效果

H5安卓软键盘挡住了输入框

相关文章: