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

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

    you want something like this, where box is the div that contains your chat. call these on page load.

    var box = document.getElementById('Box');
    box.scrollTop = box.scrollHeight;
    

    also call this when you post a new chat.

    i had created a similar application using google app engine. you can have look at it here

    http://chatter-now.appspot.com/

    feel free to use it as reference. although you are using php, the visual aspects might be helpful.

提交回复
热议问题