怎么在jquery中使用pagination.js實(shí)現(xiàn)分頁?針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
為海滄等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及海滄網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、海滄網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
添加下載的js和樣式,主要是先添加jquery.js 再添加jquery.pagination.js,我這是下載好的,放在本地
css/pagination.css" type="text/css">
表格,用的是c標(biāo)簽,獲取控制器傳過來的值
商品顯示 | ||||||
---|---|---|---|---|---|---|
商品編號 | 商品大類 | 商品名稱 | 商品規(guī)格 | 加權(quán)進(jìn)價(jià) | 當(dāng)前售價(jià) | 操作 |
js
var limit=<%=request.getAttribute("limit")%>;//每頁顯示多少 條數(shù)據(jù) var count=<%=request.getAttribute("count")%>//共多少條數(shù)據(jù) var index=<%=request.getAttribute("index")%>;//當(dāng)前記錄數(shù) $(function(){ $("#Pagination").pagination(count, { items_per_page:limit, // 每頁顯示多少條記錄 current_page: Math.ceil(index/limit), //當(dāng)前頁 num_display_entries:4, // 分頁顯示的條目數(shù) next_text:"下一頁", prev_text:"上一頁", num_edge_entries:2, // 連接分頁主體,顯示的條目數(shù) callback:handlePaginationClick }); }); function handlePaginationClick(new_page_index, pagination_container) { var path="<%=ppath%>/goodsManager/searchGoodsBylimit/" + new_page_index*limit; $("#goodsForm").attr("action",path ); $("#goodsForm").submit(); return false; }
控制器
@RequestMapping(value = "/searchGoodsBylimit/{index}") public String searchGoodsBylimitPst(Model model, @ModelAttribute Goods goods, @PathVariable String index, HttpServletRequest request) { //索引 if (index == null || index.equals("")) { index = "0"; //從服務(wù)器獲取數(shù)據(jù) ListgoodsS = goodsService.selectGoods(goods, Integer.parseInt(index), PageParam.limit); if (goodsS != null) { model.addAttribute("goodsS", goodsS); } else { model.addAttribute("resultMsg", "沒有該商品"); } //數(shù)據(jù)總條數(shù) int count = goodsService.selectAllCount(goods); model.addAttribute("index", index); model.addAttribute("count", count); model.addAttribute("limit", PageParam.limit); System.out.println("第" + index + "數(shù)據(jù)開始顯示" + goodsS.size() + "條記錄"); return "goodsManager/showGoods"; }
效果圖
關(guān)于怎么在jquery中使用pagination.js實(shí)現(xiàn)分頁問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。