只需继续添加,您将看到最新的聊天消息,但在某些时候它会自动停止向下滚动。我怎样才能解决这个问题?感谢。
$("#button1").click(function(){
$("<div>").html("text").appendTo("#chat1");
$('#chat1').scrollTop($('#chat1').height())
});
答案 0 :(得分:2)
您需要scrollHeight
$("#button1").click(function(){
$("<div>").html("text").appendTo("#chat1");
$('#chat1').scrollTop($('#chat1')[0].scrollHeight)
});