페이지에서 데이터를 보여줄 때 앞에 No(번호) 를 붙여주는 경우가 있습니다.
DB에서 가져와서 보여줘도 되지만 여건이 안된다면 JSTL에서 바로 보여줄 수 있습니다.
아래 문구를 참고하여 보시기 바랍니다.
varStatus="status"
<td>${status.index}</td>
<td>${status.count}</td>
<table class="table table-bordered table-hover specialCollapse"> <thead> <tr> <th class="text-center" rowspan="2">index</th> <th class="text-center" rowspan="2">count</th> </tr> </thead> <tbody> <c:forEach var="testResult" items="${testResultList}" varStatus="status"> <tr> <td>${status.index}</td> <td>${status.count}</td> </tr> </c:forEach> </tbody> </table>
.index 는 0부터 시작
.count 는 1부터 시작
jQuery 날짜 비교 (날짜비교) (0) | 2016.05.04 |
---|---|
[Jsp,EL,JSTL] jsp 페이지 내에서 일정 글자수 이상 자르기 (0) | 2016.03.23 |
javascript 화면 캡쳐 (0) | 2016.03.14 |
AngularJS (0) | 2016.01.19 |
javascript 문자열 byte 자르기 (글자 크기, 글자 길이) (0) | 2016.01.06 |
댓글 영역