溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在jquery中使用pagination.js實現(xiàn)分頁

發(fā)布時間:2021-03-26 15:26:30 來源:億速云 閱讀:242 作者:Leah 欄目:web開發(fā)

怎么在jquery中使用pagination.js實現(xiàn)分頁?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

添加下載的js和樣式,主要是先添加jquery.js 再添加jquery.pagination.js,我這是下載好的,放在本地

<link rel="stylesheet" href="<%=path%>css/pagination.css" type="text/css">
<script type="text/javascript" src="<%=path%>js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="<%=path%>js/jquery.pagination.js"></script>

表格,用的是c標簽,獲取控制器傳過來的值

<table width="1052" border=0 align=center cellpadding=2 cellspacing=1
   bordercolor="#799AE1" class=tableBorder>
   <tbody>
    <tr>
     <th align=center colspan=16 >商品顯示</th>
    </tr>

    <tr align="center" bgcolor="#799AE1" >
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>商品編號</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>商品大類</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>商品名稱</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>商品規(guī)格</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>加權進價</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>當前售價</td>
     <td width="10%" align="center" class=txlHeaderBackgroundAlternate>操作</td>

    </tr>


    <c:forEach items="${goodsS}" var="goods">
     <tr bgcolor="#DEE5FA">
      <td align="center" id="goodsId" class="txlrow"><c:out
        value="${goods.goodsId}"></c:out></td>
      <td align=center id="goodsType" class=txlrow><c:out
        value="${goods.goodsType}"></c:out></td>
      <td align=center id="goodsName" class=txlrow><c:out
        value="${goods.goodsName}"></c:out></td>
      <td align=center id="goodsContent" class=txlrow><c:out
        value="${goods.goodsContent}"></c:out></td>
      <td align=center id="goodsPrice" class=txlrow><c:out
        value="${goods.goodsPrice}"></c:out></td>
      <td align=center id="goodsSell" class=txlrow><c:out
        value="${goods.goodsSell}"></c:out></td>
      <td align=center class=txlrow> <input type="button" value="編輯"></td>
     </tr>
    </c:forEach>

   </tbody>
  </table>

<!--分頁顯示-->
<div id="Pagination"></div>

js

var limit=<%=request.getAttribute("limit")%>;//每頁顯示多少 條數(shù)據(jù)
 var count=<%=request.getAttribute("count")%>//共多少條數(shù)據(jù)
 var index=<%=request.getAttribute("index")%>;//當前記錄數(shù)
$(function(){
 $("#Pagination").pagination(count, {
  items_per_page:limit, // 每頁顯示多少條記錄
  current_page: Math.ceil(index/limit), //當前頁
  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";
  //從服務器獲取數(shù)據(jù)
  List<Goods> goodsS = 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";
 }

效果圖

怎么在jquery中使用pagination.js實現(xiàn)分頁

關于怎么在jquery中使用pagination.js實現(xiàn)分頁問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI