how to fix the scrollbar always at the bottom of a div?

后端 未结 6 1997
慢半拍i
慢半拍i 2020-12-17 14:42

I am doing a simple chat application,I want to fix the scrollbar of a div always at the bottom.just like this\"enter

6条回答
  •  余生分开走
    2020-12-17 15:06

    function loadchatval(){
        $.post('loadchat.php',function(data){               
        $('#load_chat').html(data); 
        $("#load_chat").animate({ scrollTop: $(document).height() }, "slow");
        return false;
    });
    }
    

提交回复
热议问题