IOS 弹框在微信中导致输入框等失焦 偏移问题解决

 

    $("#remark").blur(function () {
        setTimeout(() => {
            const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
            window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);
    });
posted @ 2020-01-09 17:54  现世中的素人  阅读(308)  评论(0编辑  收藏  举报