当然,有人必须知道如何让它发挥作用......
我的博客目前设置在一个自定义页面,该页面仅显示给定类别中的帖子。每个帖子都有一个切换按钮。当按下切换按钮时,后隐藏(整个div隐藏了标题和所有帖子内容)。这符合要求。
该页面也设置为每页显示10个帖子。如果我有11个帖子,则第11个被推到第2页。这可以按照需要运行。
问题在于,当一个帖子被切换时(比如帖子3),我在这个页面上总共有9个帖子,第11页上留下了第11个帖子。我想要发生的是当发布时3被切换,第11页应该进入第1页,第2页基本上消失(因为那里没有要显示的帖子)。
用于说明目的: 第1页显示第1,2,3,4,5,6,7,8,9,10帖子 第2页显示帖子11 ......等等。
如果切换后3: 第1页显示帖子1,2,4,5,6,7,8,9,10,11 第2页消失(除非有帖子12,13等)
有人知道如何实现这个吗?
page.php文件:
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'category_name' => 'post',
'paged' => $paged,
'posts_per_page' => 10
);
query_posts($args);
while (have_posts()) : the_post();
?>
..........the posts are displayed.............
<?php endwhile; ?>
<script type="text/javascript">
var pager = new Imtech.Pager();
$(document).ready(function() {
pager.paragraphsPerPage = 5; // set amount elements per page
pager.pagingContainer = $('#paginate'); // set of main container
pager.paragraphs = $('div.z', pager.pagingContainer); // set of required containers
pager.showPage(1);
});
</script>
toggle.js
$(document).on("click", ".toggle", function(){
postID = $(this).attr('id').replace('toggle_', '');
// Declare variables
value = '0';
myajax();
return false;
});
function myajax(){
// Send values to database
$.ajax({
url: 'check.php',
//check.php receives the values sent to it and stores them in the database
type: 'POST',
data: 'postID=' + postID + '&value=' + value,
success: function(result) {
$('#post_' + postID).toggle();
}
});
}
pagination.js
var Imtech = {};
Imtech.Pager = function() {
this.paragraphsPerPage = 3;
this.currentPage = 1;
this.pagingControlsContainer = '#pagingControls';
this.pagingContainerPath = '#contained';
this.numPages = function() {
var numPages = 0;
if (this.paragraphs != null && this.paragraphsPerPage != null) {
numPages = Math.ceil(this.paragraphs.length / this.paragraphsPerPage);
}
return numPages;
};
this.showPage = function(page) {
this.currentPage = page;
var html = '';
this.paragraphs.slice((page-1) * this.paragraphsPerPage,
((page-1)*this.paragraphsPerPage) + this.paragraphsPerPage).each(function() {
html += '<div>' + $(this).html() + '</div>';
});
$(this.pagingContainerPath).html(html);
renderControls(this.pagingControlsContainer, this.currentPage, this.numPages());
}
var renderControls = function(container, currentPage, numPages) {
var pagingControls = 'Page: <ul>';
for (var i = 1; i <= numPages; i++) {
if (i != currentPage) {
pagingControls += '<li><a href="#" onclick="pager.showPage(' + i + '); return false;">' + i + '</a></li>';
} else {
pagingControls += '<li>' + i + '</li>';
}
}
pagingControls += '</ul>';
$(container).html(pagingControls);
}
}
那么,有什么想法吗?
答案 0 :(得分:0)
我的回答是通过ajax重新加载当前页面。