관리 메뉴

엉망진창

JSTL foreach 예제 본문

Study_Web/JSP

JSTL foreach 예제

엉망진창 2008. 4. 2. 18:27
<c:set var="fax_arr" value="${fn:split(mapInfo.CUST_PHONE,'-')}"/>
   <c:forEach var="x" items="${fax_arr}" varStatus="sts">
   <html:text property="custFax${sts.count}" value="${x}" size="4" maxlength="4" onkeyup="JavaScript:onlyNumber2(this);"></html:text>
   </c:forEach>



varStatus는 var 속성을 통해 변수에 담은 반복문의 값의 상태를 담고있는 변수를 지정한다.
${sts.count}는 카운트값
${sts.index}도 카운트값이지만 0부터 시작함.

'Study_Web > JSP' 카테고리의 다른 글

jsp 에서 include  (0) 2008.09.12
JSTL 기초, Part 1: Expression Language  (0) 2008.06.10
prototype.js  (0) 2008.03.05
자바 자주쓰는 형변환  (0) 2008.02.18
이클립스 플러그인[펌]  (0) 2008.01.30