使用带有MySQL数据库的无限滚动
我找到了一个很好的ajax / jquery无限滚动插件(http://hycus.com/2011/03/15/infinite-scrolling-
like-new-twitter-with-php-mysql-jquery/)对我的内容来说很好,但是我遇到一个问题-
它只调用一次loadmore.php脚本。让我显示代码:
在我的index.php文件中:
<script type="text/javascript"> $(window).scroll(function(){
if($(window).scrollTop() == $(document).height() - $(window).height()){
$('div#loadmoreajaxloader').show();
$.ajax({
url: "loadmore.php?lastid=" + $(".postitem:last").attr("id"),
success: function(html){
if(html){
$("#postswrapper").append(html);
$('div#loadmoreajaxloader').hide();
}else{
$('div#loadmoreajaxloader').html('<center>No more posts to show.</center>');
}
}
});
}
});
</script>
本节将调用我的loadmore.php文件,并将其发送给最后一个帖子。这仅在我第一次滚动到页面底部时才有效,它从loadmore.php加载条目,但不会再次调用loadmore.php。我的loadmore.php文件具有以下代码:
<?phpinclude('./includes/config.php');
if($_GET['lastid']){
$query = 'SELECT * FROM db WHERE id < "'.$_GET['lastid'].'" ORDER BY id DESC LIMIT 0,3';
$result = mysql_query($query);
while ($rec = mysql_fetch_object($result)) {
[SET MY VARS]
?>
[HTML & PHP DISPLAYING MY POST]
<?php
}
}
?>
在第一个ajax调用之后显示的3个帖子完美地出现了,这正是我希望它们显示正确数据的方式。但是在出现前3个帖子之后,我无法显示下3个帖子。
因此,如果我的index.php上默认有5个帖子,我滚动到底部,ajax调用了3个帖子,它们显示完美,但是即使有很多帖子可以显示,此后也没有任何显示。我的问题在哪里,ajax
/ jquery向导?
回答:
您的“如果”条件仅在您第一次滚动时得到满足。因此,从本质上讲,将触发该事件,而不是当您滚动到页面底部时,而是在您开始滚动时。将代码替换为以下内容:
<script type="text/javascript"> var loading = false;
$(window).scroll(function(){
var h = $('#postswrapper').height();
var st = $(window).scrollTop();
// the following tests to check if
// 1. the scrollTop is at least at 70% of the height of the div, and
// 2. another request to the ajax is not already running and
// 3. the height of the div is at least 500.
// You may have to tweak these values to work for you.
if(st >= 0.7*h && !loading && h > 500){
loading = true;
$('div#loadmoreajaxloader').show();
$.ajax({
url: "loadmore.php?lastid=" + $(".postitem:last").attr("id"),
success: function(html){
if(html){
$("#postswrapper").append(html);
$('div#loadmoreajaxloader').hide();
}else{
$('div#loadmoreajaxloader').html('<center>No more posts to show.</center>');
}
loading = false;
}
});
}
});
</script>
以上是 使用带有MySQL数据库的无限滚动 的全部内容, 来源链接: utcz.com/qa/399537.html