**的无刷新分页使用了插件Jquery.pager.js,比较简单,源码如下:
/*
* jQuery pager plugin
* Version 1.0 (12/22/2008)
* @requires jQuery v1.2.6 or later
*
* Example at: http://jonpauldavies.github.com/JQuery/Pager/PagerDemo.html
*
* Copyright (c) 2008-2009 Jon Paul Davies
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Read the related blog post and contact the author at http://www.j-dee.com/2008/12/22/jquery-pager-plugin/
*
* This version is far from perfect and doesn't manage it's own state, therefore contributions are more than welcome!
*
* Usage: .pager({ pagenumber: 1, pagecount: 15, buttonClickCallback: PagerClickTest });
*
* Where pagenumber is the visible page number
* pagecount is the total number of pages to display
* buttonClickCallback is the method to fire when a pager button is clicked.
*
* buttonClickCallback signiture is PagerClickTest = function(pageclickednumber)
* Where pageclickednumber is the number of the page clicked in the control.
*
* The included Pager.CSS file is a dependancy but can obviously tweaked to your wishes
* Tested in IE6 IE7 Firefox & Safari. Any browser strangeness, please report.
*/
(function($) {
$.fn.pager = function(options) {
var opts = $.extend({}, $.fn.pager.defaults, options);
return this.each(function() {
// empty out the destination element and then render out the pager with the supplied options
$(this).empty().append(renderpager(parseInt(options.pagenumber), parseInt(options.pagecount), options.buttonClickCallback));
// specify correct cursor activity
$('.pages li').mouseover(function() { document.body.style.cursor = "pointer"; }).mouseout(function() { document.body.style.cursor = "auto"; });
});
};
// render and return the pager with the supplied options
function renderpager(pagenumber, pagecount, buttonClickCallback) {
// setup $pager to hold render
var $pager = $('<ul class="pages"></ul>');
// add in the previous and next buttons
$pager.append(renderButton('first', pagenumber, pagecount, buttonClickCallback)).append(renderButton('prev', pagenumber, pagecount, buttonClickCallback));
// pager currently only handles 10 viewable pages ( could be easily parameterized, maybe in next version ) so handle edge cases
var startPoint = 1;
var endPoint = 9;
if (pagenumber > 4) {
startPoint = pagenumber - 4;
endPoint = pagenumber + 4;
}
if (endPoint > pagecount) {
startPoint = pagecount - 8;
endPoint = pagecount;
}
if (startPoint < 1) {
startPoint = 1;
}
// loop thru visible pages and render buttons
for (var page = startPoint; page <= endPoint; page++) {
var currentButton = $('<li class="page-number">' + (page) + '</li>');
page == pagenumber ? currentButton.addClass('pgCurrent') : currentButton.click(function() { buttonClickCallback(this.firstChild.data); });
currentButton.appendTo($pager);
}
// render in the next and last buttons before returning the whole rendered control back.
$pager.append(renderButton('next', pagenumber, pagecount, buttonClickCallback)).append(renderButton('last', pagenumber, pagecount, buttonClickCallback));
return $pager;
}
// renders and returns a 'specialized' button, ie 'next', 'previous' etc. rather than a page number button
function renderButton(buttonLabel, pagenumber, pagecount, buttonClickCallback) {
var $Button = $('<li class="pgNext">' + buttonLabel + '</li>');
var destPage = 1;
// work out destination page for required button type
switch (buttonLabel) {
case "first":
destPage = 1;
break;
case "prev":
destPage = pagenumber - 1;
break;
case "next":
destPage = pagenumber + 1;
break;
case "last":
destPage = pagecount;
break;
}
// disable and 'grey' out buttons if not needed.
if (buttonLabel == "first" || buttonLabel == "prev") {
pagenumber <= 1 ? $Button.addClass('pgEmpty') : $Button.click(function() { buttonClickCallback(destPage); });
}
else {
pagenumber >= pagecount ? $Button.addClass('pgEmpty') : $Button.click(function() { buttonClickCallback(destPage); });
}
return $Button;
}
// pager defaults. hardly worth bothering with in this case but used as placeholder for expansion in the next version
$.fn.pager.defaults = {
pagenumber: 1,
pagecount: 1
};
})(jQuery);
分享到:
相关推荐
`jquery.pager.js` 是一个基于jQuery的分页插件,用于在大量数据列表中实现高效的导航。这个插件允许开发者轻松地在页面上添加“首页”、“上一页”、“下一页”和“末页”的分页功能,使得用户可以方便地浏览和跳转...
《jQuery分页插件——jquery.pager.js详解》 在Web开发中,数据展示往往涉及到大量的信息处理,尤其是在用户交互时,如何优雅地处理大量数据的分页展示,成为了前端开发者面临的重要问题。jQuery作为一款广泛使用的...
jquery.pager.js jquery.pager.js
jquery.pager.js 基于jquery的分页功能实现
插件描述:表格分页,li分页.
知识点一:jQuery.pager.js插件使用 jquery.pager.js是一个用于实现分页效果的jQuery插件。使用该插件可以方便地在页面上生成分页链接,并且能够响应用户的点击事件,从而实现页面内容的分页显示。在使用前需要确保...
**jQuery.pager** 是一个基于JavaScript库jQuery的轻量级分页插件,它用于在网页上实现数据的分页展示。这个插件能够帮助开发者轻松地为网页表格、列表或者其他需要分页显示大量信息的区域添加交互式分页功能。在...
jquery.pager.zh.js,此插件为修改jquery的jquery.pager.js使其支持动态加载数据库数据分页显示,AJAX技术 使用方法请转到此处 ...
<script type="text/javascript" src="../Library/jquery1.3.1/jquery.pager.js"> ``` 3. **定义CSS样式**: 为分页控件定义CSS样式,如: ```css #pager ul.pages { display: block; border: none; text...
jquery.pager.en.js,此插件为修改jquery的jquery.pager.js使其支持动态加载数据库数据分页显示,AJAX技术 使用方法请转到此处 ...
jquery.pager.js 是一个jQuery插件,专门用于在Web应用中快速实现分页功能。分页是一种常见的数据展示方式,尤其适用于处理大量数据时。通过分页,用户可以分批次查看数据,而无需加载全部数据,这提高了用户体验和...
jQuery.pager Js分页插件演示代码,使用了jQuery,也同时调用了jquery.pager.js文件,如果你不打算Ajax分页的话,那么你最好不要使用本插件,若使用的话反而很麻烦。本插件主要是为使用Ajax技术交互的网站所准备,...
此外,`jQuery.tablesorter`还提供了丰富的配置选项和插件,如过滤、解析器、主题、 pager 等。例如,你可以添加一个过滤插件来实现表格的搜索功能: ```javascript $("#myTable").tablesorter({ widgets: ['...
2. jQuery插件:`z-pager.js`是基于jQuery库的插件,利用jQuery强大的DOM操作能力和事件处理能力,简化了分页功能的实现。 二、插件引入 要使用`z-pager.js`分页插件,首先需要在HTML文档中引入以下两个文件: 1....
**jQueryPager:基于JQuery的Ajax分页插件Pagination实现** 在Web开发中,当数据量庞大时,分页是一种常见的优化用户体验的方式。jQueryPager是一款轻量级的jQuery分页插件,它允许开发者通过Ajax无刷新的方式实现...
首先,确保在网页中引入jQuery库和jQuery.superslide.js插件的JavaScript文件。然后,创建HTML结构,这通常包括一个包含多个图片或内容的容器,以及用于切换的选项卡或按钮。每个图片或内容块都可以通过特定的类名...