1
我有顯示錶像下面如何獲得在JSTL顯示錶索引
<display:table name="sample" id="sample" class="display-table" style="width:100%;">
</display:table>
現在我想循環的指數一樣爲每秒1和第2,3,4元素0 ...去上。顯示錶如何可能。
對於剛纔提到,我們可以像這樣在JSTL forEach循環使用varStatus變量的幫助像下面
<c:forEach items="${sample}" var="clm" varStatus="status">
${status.index}
</c:forEach>
那麼,這可能與顯示錶?
正在引用該語句的'index of loop'? –
看到這個[**鏈接**](http://www.displaytag.org/10/tagreference-displaytag-12.html)它可能會幫助你 –
我已經提到它。它對我沒有幫助。 – commit