我的聊天框不会停止自动滚动(它不会让我向上滚动),我知道问题出在哪里......但是我不知道如何解决它。我需要聊天框自动滚动,但我希望能够同时向上滚动。
这是这个问题的一个活生生的例子。
//Load the file containing the chat log
function loadLog(){
$("#chatbox").animate({ scrollTop: 99999 }, 'normal');
$.ajax({
url: "log.html",
cache: false,
success: function(html){ $("#chatbox").animate({ scrollTop: 99999 }, 'normal');
$("#chatbox").html(html);
$("#chatbox").animate({ scrollTop: 99999 }, 'normal');
}
});
}