SMALL
forEach문은 아래와 같이 활용한다.
<c:forEach items="${data}" var="변수값" varStatus="status">
<td>
${status.current} 현재 for문의 해당하는 번호
${status.index} 0부터의 순서
${status.count} 1부터의 순서
${status.first} 첫 번째인지 여부
${status.last} 마지막인지 여부
${status.begin} for문의 시작 번호
${status.end} for문의 끝 번호
${status.step} for문의 증가값
</td>
</c:forEach>
${status.current} 현재 for문의 해당하는 번호
${status.index} 0부터의 순서
${status.count} 1부터의 순서
${status.first} 첫 번째인지 여부
${status.last} 마지막인지 여부
${status.begin} for문의 시작 번호
${status.end} for문의 끝 번호
${status.step} for문의 증가값
사용 하시면 됩니다!
LIST
'JSTL' 카테고리의 다른 글
JSTL 랜덤 숫자 얻고자할때 구분값~ (0) | 2019.08.30 |
---|---|
JSTL fmt:formatDate , 날짜형식 (0) | 2018.12.05 |
text readonly, 입력 제한,입력막기 (0) | 2018.12.05 |
JSTL empty , 빈값 비교 , 널값 체크 (0) | 2018.12.04 |
[JSTL] 태그에 if문 넣기 (0) | 2018.11.06 |