<c:choose>
<c:when test="${num.count eq 1 or num.count%4 == 0}">
<li class="first">
</c:when>
<c:when test="${num.count%5 == 0 }">
<li class="last">
</c:when>
<c:otherwise>
<li>
</c:otherwise>
</c:choose>
1번째 4 ,8,12,16.... 4의배수 first
5의 배수는 last
그외 는 그냥 li ~
반응형
':::: 개발 :::: > └ JSP & SPRING' 카테고리의 다른 글
간단한 JSP AJAX 로그인 구현 (0) | 2013.12.18 |
---|---|
jsp selectbox 선택 (0) | 2013.11.25 |
jsp 업로드 디렉토리 상위 까지 생성 (0) | 2013.11.20 |
applicationContext.xml 주석.. (0) | 2013.06.25 |
JSTL eq 비교가 안될때.. (0) | 2012.11.08 |
JSP 컴파일 된것 지우기 (0) | 2012.10.23 |
spring + maven 세팅시 ContextLoader 애러 (0) | 2012.10.10 |
spring dispatch resources 세팅시 html 파일 테스트 하기 (0) | 2012.10.09 |