先看效果圖:
實作原理很簡單,使用了jquery.pagination這個插件,每當點選頁碼時異步去伺服器去拿該頁的數據,簡單介紹如下:
一、資料庫表結構:很簡單 就四個欄位分別是News_id News_title News_time News_readtimes
二、前台頁碼:
<head runat="server"> <title>JQuery无刷新分页</title> <link href="Styles/common.css" rel="stylesheet" type="text/css" /> <link href="Styles/paging.css" rel="stylesheet" type="text/css" /> <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script src="Scripts/jquery.pagination.js" type="text/javascript"></script> <script type="text/javascript"> var pageIndex = 0; var pageSize = 3; $(function() { InitTable(0); $("#Pagination").pagination(<%=pageCount %>, { callback: PageCallback, prev_text: '上一页', next_text: '下一页', items_per_page: pageSize, num_display_entries: 6,//连续分页主体部分分页条目数 current_page: pageIndex,//当前页索引 num_edge_entries: 2//两侧首尾分页条目数 }); //翻页调用 function PageCallback(index, jq) { InitTable(index); } //请求数据 function InitTable(pageIndex) { $.ajax({ type: "POST", dataType: "text", url: 'Ajax/PagerHandler.ashx', data: "pageIndex=" + (pageIndex + 1) + "&pageSize=" + pageSize, success: function(data) { $("#Result tr:gt(0)").remove();//移除Id为Result的表格里的行,从第二行开始(这里根据页面布局不同页变) $("#Result").append(data);//将返回的数据追加到表格 } }); } }); </script> </head>
<form id="form1" runat="server"> <center> <table id="Result" border="1" cellpadding="5" style="border-collapse: collapse; margin:20px; border: solid 1px #85A8BE;width:60%"> <tr> <th style="width: 10%"> ID </th> <th style="width: 60%"> 标题 </th> <th style="width: 20%"> 更新时间 </th> <th style="width: 10%"> 点击量 </th> </tr> </table> <div id="Pagination" class="paging"> </div> </center> </form>
三、頁面後台文件
PagerHandler.ashx
public string pageCount = string.Empty;//总条目数 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { pageCount = new News().GetNewsCount(); } }
更多JQuery+Ajax無刷新分頁的實例代碼相關文章請關注PHP中文網!