博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery很好的插件jQuery Pagination Plugin
阅读量:5098 次
发布时间:2019-06-13

本文共 799 字,大约阅读时间需要 2 分钟。

官方网址:http://blog.ajaxmasters.com/jquery-pagination-plugin/

演示地址:http://tutorials.ajaxmasters.com/pagination-demo/

调用说明:

引用文件:

<link rel="stylesheet" href="pagination.css" />

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="jquery.pagination.js"></script>

// First Parameter: number of items,即返回的记录总数// Second Parameter: options object // items_per_page,每页显示记录数 // num_display_entries,分页显示的序列记录数 // num_edge_entries,分页前后显示的记录数 // prev_text,上页显示的文字 // next_text,下页显示的文字$("#News-Pagination").pagination(122, {  items_per_page:20,   num_display_entries:5,   num_edge_entries:1,   prev_text: "上页",   next_text: "下页",  callback:loadContents});

转载于:https://www.cnblogs.com/caigl/archive/2013/02/24/2924078.html

你可能感兴趣的文章
ActiveMQ与spring整合
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
关于TFS2010使用常见问题
查看>>
URL编码与解码
查看>>
Eclipse 安装SVN插件
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>