본문 바로가기
IT/Thymeleaf

[Thymeleaf] - 타임리프 셀렉트박스(selectbox) th:selected 사용법 및 문법

by 차이나는 개발자 2022. 1. 29.
728x90
반응형

#타임리프 셀렉트박스(selectbox) th:selected 사용법 및 문법

 

 

#th:selected, th:each, th:value, th:text, th:selected

<select id="comCd" name="comCd">
  <option value="">전체</option>
  <option th:each="comCdList : ${comCdList}" 
		  th:value="${comCdList.cd}"
          th:text="${comCdList.name}"
          th:selected="${comCdList.cd} == '01'">
  </option>
</select>

 

 

 

728x90
반응형

댓글