-
c forEach select option / c if selected 옵션Web Programming 2023. 2. 3. 23:18728x90반응형
<select name="shour" id="shour" title="시간 선택"> <c:forEach var="hours" items="${hourArr}" varStatus="idx"> <option value="${hours}" <c:if test="${fn:substring(detail.startDate, 11, 13) eq hours}">selected</c:if>>${hours}</option> </c:forEach> </select>시
728x90반응형'Web Programming' 카테고리의 다른 글
JSTL forEach 1씩 증가 (0) 2023.02.03 JSTL fn:substring 예시 (0) 2023.02.03 fmt:formatNumber 예시 (0) 2023.02.03 form c:url 예시 (0) 2023.02.03 jstl 특정 문자를 숫자로 변경 (0) 2023.02.03