zoukankan      html  css  js  c++  java
  • jstl分页

          效果:

          

    注释:

      totalPage(总页数):全部记录数/每页的记录数

      page:当前的页码

    <c:if test="${totalPage!=1}">  
                        <c:choose>  
                            <c:when test="${requestScope.page<=5}">  
                                <c:forEach var="i" begin="2" end="${requestScope.page}">  
                                    <td><a href="ViewServlet?currentPage=${i}">[${i }]</a>&nbsp;</td>  
                                </c:forEach>  
                            </c:when>  
                            <c:otherwise>  
                                ...&nbsp;  
                                <c:forEach var="i" begin="${requestScope.page-3}"  
                                    end="${requestScope.page}">  
                                   <td><a href="javascript:goPage(${i})">[${i }]</a>&nbsp;</td>  
                                </c:forEach>  
                            </c:otherwise>  
                        </c:choose>  
                        <c:choose>  
                            <c:when test="${requestScope.page>=totalPage-4   
                                || totalPage-4<=0}">  
                                <c:forEach var="i" begin="${requestScope.page+1}"  
                                    end="${totalPage}">  
                                    <td><a href="javascript:goPage(${i})">[${i }]</a>&nbsp;</td>
                                </c:forEach>  
                            </c:when>  
                            <c:otherwise>  
                                <c:forEach var="i" begin="${requestScope.page+1}"  
                                    end="${requestScope.currentPage+3}">  
                                    <td><a href="javascript:goPage(${i})">[${i }]</a>&nbsp;</td>  
                                </c:forEach>  
                                ...&nbsp;  
                                <td><a href="javascript:goPage(${totalPage})">  
                                    [${totalPage}]</a>&nbsp;</td>
                            </c:otherwise>  
                        </c:choose>  
                    </c:if>

  • 相关阅读:
    继承
    构造函数,重载
    Java Scanner学习记录
    20131204-数据库基础
    20131128-正则表达式与委托
    20131125-序列化与正则表达式
    20131127-正则表达式
    20131120-接口字符串-小鸭子练习
    20131118-静态类抽象类-外部设备
    20131117-练习面向对象
  • 原文地址:https://www.cnblogs.com/ClodThunder/p/4154414.html
Copyright © 2011-2022 走看看