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