Scroll to bottom of div?

前端 未结 30 2813
日久生厌
日久生厌 2020-11-21 11:56

I am creating a chat using Ajax requests and I\'m trying to get messages div to scroll to the bottom without much luck.

I am wrapping everything in this div:



        
30条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-21 12:22

    You can also, using jQuery, attach an animation to html,body of the document via:

    $("html,body").animate({scrollTop:$("#div-id")[0].offsetTop}, 1000);

    which will result in a smooth scroll to the top of the div with id "div-id".

提交回复
热议问题