我正在进行分页,我跟着this link并且它有效!
但是,我遇到索引问题。我正在获取大量数据,总页数大约为100。
所有页码都显示在主jsp页面中。这意味着1 2 3 4 5 6 7 8 ----- 97 98 99 100下一步。
但我想显示1 2 3 4 5 6 7 8 9 10然后接下来。
所以有人可以建议我如何实现这种方法呢?提前致谢! :)
<c:forEach begin="1" end="${noOfPages}" var="i">
<c:choose>
<c:when test="${currentPage eq i}">
<button type="button" onclick="location.href='...?page=${i}';">${i}</button>
</c:when> <c:otherwise>
<button type="button" onclick="location.href='...?page=${i}';">${i}</button>
</c:otherwise>
</c:forEach>