/**
* 设置聊天框中的滚动条始终在底部
*/
function setScrollForBottom(id){
var height = document.getElementById(id).scrollHeight;
$("#"+id).scrollTop(height);
}
时间: 2024-12-14 05:55:57
/**
* 设置聊天框中的滚动条始终在底部
*/
function setScrollForBottom(id){
var height = document.getElementById(id).scrollHeight;
$("#"+id).scrollTop(height);
}