苹果设备h5页面软键盘收回后页面底部留白问题

// 这里监听键盘收起,然后滚动顶部
document.body.addEventListener('focusout', () => {
    // 软键盘收起的事件处理
    let ua = navigator.userAgent.toLowerCase();
    if (ua.indexOf('iphone') > 0 || ua.indexOf('ipad') > 0) {
        // 键盘收齐页面空白问题
        document.body.scrollTop = document.body.scrollHeight;
    }
});

  

posted @ 2019-05-29 11:20  冯鑫禄  阅读(656)  评论(0编辑  收藏  举报