移动端手机聚焦滚动条移动到最后

注意。html,高度设置为100%

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

    var h = document.documentElement.scrollHeight || document.body.scrollHeight;
    window.scrollTo(h, h);
}
})

缺点

没有动画效果看起来比较生硬

你可能感兴趣的:(移动端手机聚焦滚动条移动到最后)