본문 바로가기
SpringBoot

[Spring Boot] select 검색조건유지 jstl

by Yeoseungwon 2023. 11. 6.
728x90
<select name="searchLessonStatus" id="searchLessonStatus" title="상태값" style="margin-right:5px" onchange="fn_search();">
	<option value="">상태값 전체</option>
		<option value="R" <c:if test="${searchVO.searchLessonStatus eq 'R'}">selected</c:if> >예약</option>
		<option value="E" <c:if test="${searchVO.searchLessonStatus eq 'E'}">selected</c:if> >완료</option>
    	<option value="C" <c:if test="${searchVO.searchLessonStatus eq 'C'}">selected</c:if> >취소</option>
</select>

 

 

`${searchVO.searchLessonStatus}` 와 각 옵션의 값을 비교하고 일치하는 경우 `selected`속성을 추가하여 상태값을 선택한다.  이렇게 하면 검색된 값에 따라 상태값을 선택할 수 있다. 
 
728x90

'SpringBoot' 카테고리의 다른 글

[Spring Boot] Cubrid insert  (1) 2023.11.20
[JSTL] 날짜사용  (0) 2023.11.09
[Spring Boot] DAO 검색  (0) 2023.11.06
[Spring Boot] jstl 로 스크립트 줄이기  (0) 2023.11.03
jsp 스크립트 sec:authorize access  (0) 2023.11.02