_paginate.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <% //macro paginate currentPage totalPage totalRow actionUrl urlParas=""%>
  2. <%
  3. if (totalPage <= 0 || currentPage > totalPage) return;
  4. var startPage = currentPage - 4;
  5. if(startPage<1){
  6. startPage=1;
  7. }
  8. var endPage = currentPage+4;
  9. if(endPage>totalPage){
  10. endPage = totalPage;
  11. }
  12. %>
  13. <ul class="page" style="height: 28px; margin-left: 257px;">
  14. <li style=" margin-right:15px; line-height:28px; float: left;">共<span>${totalRow}</span>条记录</li>
  15. <%
  16. if(currentPage <= 8){
  17. startPage = 1;
  18. }
  19. if(totalPage-currentPage < 8){
  20. endPage = totalPage;
  21. }
  22. if(currentPage == 1){
  23. %>
  24. <a href="javascript:"><li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">&lt;&lt;</li></a>
  25. <%}else{%>
  26. <a href="${actionUrl}${currentPage - 1}&urlParas=${urlParas!}"><li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">&lt;&lt;</li></a>
  27. <%}%>
  28. <%if(currentPage > 8){%>
  29. <a href="${actionUrl}1&urlParas=${urlParas!''}"><li style="width:20px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">1</li></a>
  30. <a href="${actionUrl}2&urlParas=${urlParas!''}"><li style="width:20px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">2</li></a>
  31. <li>...</li>
  32. <%}%>
  33. <%
  34. var index = startPage;
  35. while(index<=endPage){%>
  36. <%if(currentPage == index){%>
  37. <a href="javascript:"><li style="width:20px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;" class="liColor">${index}</li></a>
  38. <%}else{%>
  39. <a href="${actionUrl+index}&urlParas=${urlParas!''}"><li style="width:20px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">${index}</li></a>
  40. <%}%>
  41. <%
  42. index= index+1;
  43. }%>
  44. <%if((totalPage - currentPage) >= 8){%>
  45. <a href="javascript:"><li>...</li></a>
  46. <a href="${actionUrl}${totalPage - 1}&urlParas=${urlParas!''}"><li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">${totalPage - 1}</li></a>
  47. <a href="${actionUrl}${totalPage}&urlParas=${urlParas!''}"> <li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">${totalPage}</li></a>
  48. <%}%>
  49. <%if(currentPage == totalPage){%>
  50. <a href="javascript:" class="next"><li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">&gt;&gt;</li></a>
  51. <%}else{%>
  52. <a href="${actionUrl}${currentPage + 1}&urlParas=${urlParas!}" class="next"><li style="width:43px; margin-right:4px; border:1px solid #ccc; line-height:26px; text-align:center; height:26px; float:left;">&gt;&gt;</li></a>
  53. <%}%>
  54. </ul>