<c:choose>
<c:when test="${index>1 }">
<a href="list.action?index=${index-1 }"
style="text-decoration: none;color:gray;">上一页</a>
</c:when>
<c:otherwise>
上一页
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${index<allRows }">
<a href="list.action?index=${index+1 }"
style="text-decoration: none;color:gray;">下一页</a>
</c:when>
<c:otherwise>
下一页
</c:otherwise>
</c:choose>
103

被折叠的 条评论
为什么被折叠?



