index.jsp
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2.     pageEncoding="GB18030"%>
  3. <%@include file="/common/common.jsp" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  8. <title>分页处理演示</title>
  9. </head>
  10. <body>
  11. <pg:pager items="1001" export="currentPageNumber=pageNumber">
  12. <pg:first>
  13. <a href="${pageUrl}">首页</a>
  14. </pg:first>
  15. <pg:prev>
  16. <a href="${pageUrl }">前页</a>
  17. </pg:prev>
  18. <pg:pages>
  19. <c:choose>
  20. <c:when test="${currentPageNumber eq pageNumber }">
  21. <font color="red">${pageNumber }</font>
  22. </c:when>
  23. <c:otherwise>
  24. <a href="${pageUrl }">${pageNumber }</a>
  25. </c:otherwise>
  26. </c:choose>
  27. </pg:pages>
  28. <pg:next>
  29. <a href="${pageUrl }">后页</a>
  30. </pg:next>
  31. <pg:last>
  32. <a href="${pageUrl }">尾页</a>
  33. </pg:last>
  34. </pg:pager>
  35. </body>
  36. </html>