简体   繁体   English

使用ajax php加载所有帖子时显示“没有更多帖子”

[英]Show 'no more posts' when loaded all posts using ajax php

Below is the javascript part and load more button which I am using to load more posts from database it works fine I want to show a 'no more posts' message when all posts have been loaded but do not know how to do that exactly. 以下是javascript部分和加载更多按钮,我正在使用该按钮从数据库加载更多帖子,它工作正常,我想在所有帖子均已加载但不知道如何准确执行操作时显示“不再发布”消息。 Hope you guys can help. 希望你们能提供帮助。

<script>
$(document).ready(function(){
    $(document).on('click','.show_more',function(){
        var ID = $(this).attr('id');
        $('.show_more').hide();
        $('.loding').show();
        $.ajax({
            type:'POST',
            url:'mload_more.php',
            data:'id='+ID,
            success:function(html){
                $('#show_more_main'+ID).remove();
                $('.posts').append(html);
           }
        });        
    });
});
</script>

<div class="show_more_main" id="show_more_main<?php echo $ID; ?>">
    <span id="<?php echo $ID; ?>" class="show_more" title="Load more posts">
        Show more
    </span>
    <span class="loding" style="display: none;">
        <span class="loding_txt">Loading...</span>
    </span>
</div>

Within mload_more.php file check the number of returned rows greater than zero. 在mload_more.php文件中,检查返回的行数是否大于零。 It would be as following code. 这将是以下代码。

if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        //display data
    }
} else {
    echo "No more posts to load";
}

Gayan just gave me a start and rest was not much difficult. 加安只是给了我一个开始,休息并不困难。

<?php   
if ($query->rowCount() > 0) {
  while($row = $result->fetch_assoc()) {
}
}
else {
echo $er = "No more posts to load";
}  
?>
<script type="text/javascript">
var er = "<?php echo $er; ?>";
if(er!=''){
$("er").show();
$('.show_more').hide();
}
</script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM