var Height = 600;
$('#message_container').scroll(function(){
if ($('#message_container').scrollTop() > Height){
alert('up');
}else{
alert('down');
}
});
我有 div overflow-y:auto
,它每次提取 10 条消息。
我尝试使用 jquery 向上滚动来获取更多消息。
div
高度为 600 像素;在我测试时,即使我向上滚动它也会保持警觉,有人知道为什么吗?