欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery.pagination.js分页使用教程

程序员文章站 2023-08-17 14:01:22
简单介绍一下在动态网页里面的jquery.pagination.js分页的使用,具体内容如下 添加下载的js和样式,主要是先添加jquery.js 再添加jquery.p...

简单介绍一下在动态网页里面的jquery.pagination.js分页的使用,具体内容如下

添加下载的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 style="height: 23px">商品显示</th>
    </tr>

    <tr align="center" bgcolor="#799ae1" style="height:28px">
     <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>商品规格</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")%>;//每页显示多少 条数据
 var count=<%=request.getattribute("count")%>//共多少条数据
 var index=<%=request.getattribute("index")%>;//当前记录数
$(function(){
 $("#pagination").pagination(count, {
  items_per_page:limit, // 每页显示多少条记录
  current_page: math.ceil(index/limit), //当前页
  num_display_entries:4, // 分页显示的条目数
  next_text:"下一页",
  prev_text:"上一页",
  num_edge_entries:2, // 连接分页主体,显示的条目数
  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";
  //从服务器获取数据
  list<goods> goodss = goodsservice.selectgoods(goods,
    integer.parseint(index), pageparam.limit);


  if (goodss != null) {
   model.addattribute("goodss", goodss);
  } else {
   model.addattribute("resultmsg", "没有该商品");
  }
  //数据总条数
  int count = goodsservice.selectallcount(goods);
  model.addattribute("index", index);
  model.addattribute("count", count);
  model.addattribute("limit", pageparam.limit);

  system.out.println("第" + index + "数据开始显示" + goodss.size() + "条记录");
  return "goodsmanager/showgoods";
 }

效果图

jquery.pagination.js分页使用教程

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。