Scroll to bottom of div?

前端 未结 30 2700
日久生厌
日久生厌 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 12:24

    I know this is an old question, but none of these solutions worked out for me. I ended up using offset().top to get the desired results. Here's what I used to gently scroll the screen down to the last message in my chat application:

    $("#html, body").stop().animate({
         scrollTop: $("#last-message").offset().top
    }, 2000);
    

    I hope this helps someone else.

提交回复
热议问题