我想从底部为聊天框设置div滚动,如下图所示, 其他解决方案也可以接受。
答案 0 :(得分:3)
我设法做到了这样:
我们假设:
<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