最佳答案
如何确定一个除法的 scrollHeight 使用 css overflow: auto?
我试过了:
$('test').scrollHeight();
$('test').height(); but that just returns the size of the div not all the content
最后,我试图创建一个聊天,并始终有滚动条的当前信息在屏幕上。
所以我的想法是这样的:
var test = $('test').height();
$('test').scrollTop(test);
谢谢,
布莱恩