js设置滚动条到div底部

 /**
     * 设置聊天框中的滚动条始终在底部
     */
    function setScrollForBottom(id){
        var height = document.getElementById(id).scrollHeight;
        $("#"+id).scrollTop(height);
    }ide

相关文章
相关标签/搜索