JSP分頁

從數據庫中讀取衆多數據,將其進行分頁展示。

<h2>
    <!--<a href=\'#\'" /a> -->
    <c:choose>
        <c:when test="${page gt 1}">
            <a href=\'#\'" /a>
        </c:when>
        <c:otherwise>
            上一頁
        </c:otherwise>
    </c:choose>
                                    
    |第 ${page} 頁|
                                    
    <!-- <a href=\'#\'" /a>  -->
    <c:choose>
        <c:when test="${page lt totalPages}">
            <a href=\'#\'" /a>
        </c:when>
        <c:otherwise>
            下一頁
        </c:otherwise>
    </c:choose>
</h2>

<c:whentest="${page gt 1}"> 當在第一頁的時候,不能再向前跳轉。

<c:whentest="${page lt totalPages}"> 當在最後一頁後,不能再向後跳轉。



發佈了40 篇原創文章 · 獲贊 0 · 訪問量 2萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章