2

下の画像のように、チャットボックスのdivスクロールを常に下から設定したいのですが、他の解決策も受け入れられます。

画像

4

1 に答える 1

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
于 2015-03-27T21:11:50.417 に答える