728x90
반응형
#타임리프 체크박스(checkbox) 사용법 및 문법
#Thymeleaf checkbox
#html
<input type="checkbox" name="chkYn" id="webYnChk"><span>Web</span>
<input type="checkbox" name="chkYn" id="appYnChk"><span>App</span>
<input type="hidden" id="webYn" name="webYn" th:value="${data.webYn}">
<input type="hidden" id="appYn" name="appYn" th:value="${data.appYn}">
#js / jquery
// 초기설정
if($("#webYn").val() == 'Y'){
$("#webYnChk").prop("checked", true);
}
if($("#appYn").val() == 'Y'){
$("#appYnChk").prop("checked", true);
}
// 등록
var webYn = ($("#webYnChk").is(":checked") ? "Y" : "N");
var appYn = ($("#appYnChk").is(":checked") ? "Y" : "N");
$("#webYn").val(webYn);
$("#appYn").val(appYn);
728x90
반응형
'IT > Thymeleaf' 카테고리의 다른 글
[Thymeleaf] - 타임리프 th:onclick, th:onkeyup, th:onchange 사용법 및 문법 (0) | 2022.01.31 |
---|---|
[Thymeleaf] - 타임리프 파일(file), 이미지(image) th:src 사용법 및 문법 (0) | 2022.01.31 |
[Thymeleaf] - 타임리프 셀렉트박스 반복문 처리 th:with, th:unless, #numbers.sequence 날짜(시간, 분) 선택하는 법 (0) | 2022.01.29 |
[Thymeleaf] - 타임리프 셀렉트박스(selectbox) th:selected 사용법 및 문법 (0) | 2022.01.29 |
[Thymeleaf] - 타임리프 th:for 사용법 및 문법 (0) | 2022.01.29 |
댓글