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>

  • 相关阅读:
    LeetCode with Python -> Linked List
    拼多多2018校招编程题汇总 Python实现
    Windows命令行中pip install jieba,但没有安装到anaconda3中
    sklearn快速入门
    人工神经网络在肺结核诊断中应用的研究进展
    Leetcode with Python -> Array
    标签语义空间生成
    leetcode with python -> tree
    读书笔记——中文信息处理发展报告(2016)
    移动开发学习记录
  • 原文地址:https://www.cnblogs.com/ClodThunder/p/4154414.html
Copyright © 2011-2022 走看看