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

时间:2020-01-09 18:48:25   收藏:0   阅读:129

 

    $("#remark").blur(function () {
        setTimeout(() => {
            const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
            window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);
    });
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!