移动端IOS第三方输入法遮挡底部Input及android键盘回落留白问题

     var interval;
        //消息框获取焦点
        $('#J_text').focus(function(){
            interval = setInterval(function() {
                scrollToEnd();
            }, 500)
        })

        //消息框失去焦点
        $('#J_text').blur(function(){
            clearInterval(interval);
        })
//滚动到底部
function scrollToEnd(){

document.body.scrollTop = document.body.scrollHeight;
}
原文地址:https://www.cnblogs.com/LChenglong/p/8006105.html