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>

  • 相关阅读:
    微信小程序入门实例
    textarea 的value值以及演示
    Think php (TP5) 批量删除全部源码
    Think php TP5 CURD 增删改查全部源码
    TP5 Think php 批量添加全部源码
    centos7 supervisor管理redis
    Centos7 设置redis开机自启
    Centos7安装gearman和php扩展
    nginx-403
    FFmpeg-截取视频图片
  • 原文地址:https://www.cnblogs.com/ClodThunder/p/4154414.html
Copyright © 2011-2022 走看看