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

后端 未结 6 1988
慢半拍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 14:52

    Below line of code to scroll vertical scrollbar always in bottom of the whole page.

    $("html, body").animate({ scrollTop: $(document).height() }, "fast"); 
    

    Below line of code to scroll vertical scrollbar always in bottom of scrollable div container named to "daViewerContainer".

    $("#daViewerContainer").animate({ scrollTop: $(document).height() }, "fast");
    

提交回复
热议问题