728x90
반응형
#타임리프 th:onclick, th:onkeyup, th:onchange 사용법 및 문법
#th:onclick, th:onkeyup, th:onchange
// th:onclick
<button type="button" class="btn" th:onclick="onClickTest(); return false;">클릭</button>
// th:onkeyup
<input type="text" id="userName" name="userName" th:value="${data.userName}" th:onkeyup="onKeyupTest(this)">
// th:onchange
<select id="userType" name="userType" th:onchange="onchangeTest(this)">
<option value="">선택</option>
<option value="A" th:selected="${'A' == data.userType}">A</option>
<option value="B" th:selected="${'B' == data.userType}">B</option>
<option value="C" th:selected="${'C' == data.userType}">C</option>
</select>
728x90
반응형
'IT > Thymeleaf' 카테고리의 다른 글
[Thymeleaf] - 타임리프 반복문 th:each 사용법 및 문법 (0) | 2022.01.31 |
---|---|
[Thymeleaf] - 타임리프 조건문 th:switch, th:case 사용법 및 문법 (0) | 2022.01.31 |
[Thymeleaf] - 타임리프 파일(file), 이미지(image) th:src 사용법 및 문법 (0) | 2022.01.31 |
[Thymeleaf] - 타임리프 체크박스(checkbox) 사용법 및 문법 (0) | 2022.01.29 |
[Thymeleaf] - 타임리프 셀렉트박스 반복문 처리 th:with, th:unless, #numbers.sequence 날짜(시간, 분) 선택하는 법 (0) | 2022.01.29 |
댓글