我想允许在加载 div 时自动滚动到底部,然后禁用该功能我怎么能这样做
//$("#chatroom").animate({ scrollTop: $(document).height() }, "slow");
var scrolled = 0;
$("#chatroom").animate({
scrollTop: $('#chatroom')[0].scrollHeight
}, 1000)
scrolled = 1;
$('#closechat').live('click', function () {
$('#chatroom').hide();
stoprefresh();
});