官方网址: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 });