【发布时间】:2017-03-26 23:16:54
【问题描述】:
为了正确显示聊天窗口,我以以下代码结束:
function baja_el_chat() {
var height = 0;
$('div#my-conversation .message').each(function(i, value){
height += parseInt($(this).height());
});
height += '';
$('div#my-conversation').animate({scrollTop: height});
}
【问题讨论】: