2015-01-06 201 views
1

我想從底部總是設置DIV滾動聊天框就像在圖像的下方, 其它解決方案也是可以接受的顯示。niceScroll設置DIV滾動總是從底部聊天框

Image

+0

請顯示嘗試到目前爲止 – jbutler483

+0

'$('div2scrollID')。scrollTop($('div2scrollID')。get(0).scrollHeight);'試試這個。 – Jai

+0

[使用A補習](http://code.tutsplus.com/tutorials/how-to-create-a-simple-web-based-chat-application--net-5931)或[使用插件](HTTP ://www.sitepoint.com/9-crazy-jquery-chat-c​​hat-box-plugins/) – jbutler483

回答

2

我設法做到這一點是這樣的:

讓我們假設:

<div id="chat-scroll-container"> 
    <div id="chat-content"> 
     ... your messages ... 
    </div> 
</div> 

你可以這樣說:

$('#chat-scroll-container').getNiceScroll(0).doScrollTop($('#chat-content').height()); 

如果你不這樣做要使用的任何動畫,像這樣做:

$('#chat-scroll-container').getNiceScroll(0).doScrollTop($('#chat-content').height(), -1); // -1 is the animation duration 
相關問題