【转】Jquery分页插件
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery Pagination分页插件ajax demo</title> <link rel="stylesheet" href="lib/pagination.css" /> <style type="text/css"> body{font-size:84%; color:#333333; line-height:1.4;} a{color:#34538b;} #Searchresult{width:300px; height:100px; padding:20px; background:#f0f3f9;} </style> <script type="text/javascript" src="lib/jquery.min.js"></script> <script type="text/javascript" src="lib/jquery.pagination.js"></script> <script type="text/javascript"> $(function(){ //此demo通过Ajax加载分页元素 var initPagination = function() { var num_entries = $("#hiddenresult div.result").length; // 创建分页 $("#Pagination").pagination(num_entries, { num_edge_entries: 1, //边缘页数 num_display_entries: 4, //主体页数 callback: pageselectCallback, items_per_page: 1, //每页显示1项 prev_text: "前一页", next_text: "后一页" }); }; function pageselectCallback(page_index, jq){ var new_content = $("#hiddenresult div.result:eq("+page_index+")").clone(); $("#Searchresult").empty().append(new_content); //装载对应分页的内容 return false; } //ajax加载 $("#hiddenresult").load("load.html", null, initPagination); }); </script> </head> <body> <h1>jQuery Pagination分页插件ajax demo</h1> <div id="Pagination" class="pagination"><!-- 这里显示分页 --></div> <div id="Searchresult">分页初始化完成后这里的内容会被替换。</div> <div id="hiddenresult" style="display:none;"> <!-- 列表元素 --> </div> </body> </html>
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17