微信内网页内容被键盘顶上去问题解决

$("input").blur(function() {
        setTimeout(function() {
            var scrollHeight =
                document.documentElement.scrollTop ||
                document.body.scrollTop ||
                0;
            window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);
    });
    $("select").change(function() {
        setTimeout(function() {
            var scrollHeight =
                document.documentElement.scrollTop ||
                document.body.scrollTop ||
                0;
            window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);
    });

  

posted @ 2019-03-08 13:33  阳朝  阅读(583)  评论(0编辑  收藏  举报