我从这个函数中收到一个错误
function scrolldown() {
$("#chatArea").scrollTop($("#chatArea")[0].scrollHeight);
}
费勒:类型错误:$(...)[0] 未定义
此脚本在 ajax 查询中调用以更新聊天框以滚动到底部
function refreshChat()
{
$.ajax({
type: "POST",
url: "ajax/sb.php",
success: function(msg){
$("#chatArea").html(msg);
scrolldown();
}
});
}
每 5 秒更新一次
window.setInterval("refreshChat()",5000);
有什么建议么?