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

后端 未结 6 1994
慢半拍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:02

    Try this jquery :

    $(".messages").animate({ scrollTop: $(document).height() }, "slow");
      return false;
    

    and here is the fiddle : http://jsfiddle.net/EX6vs/

    or refers to the height of the element (many agree is the right way), as below:

    $(".messages").animate({ scrollTop: $(this).height() }, "slow");
      return false;
    

    and here is the fiddle : http://jsfiddle.net/69vpnyu1/

提交回复
热议问题