Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이클립스
- 날짜
- RADIO
- 오라클
- switch
- 문자열
- MYSQL
- maven
- 톰캣
- 호환성
- 전자정부 표준프레임워크
- exception
- SSL
- json
- JSTL
- 웹 플랫폼 설치 관리자
- DB
- html
- 스크립트
- checbox
- jquery
- null
- php
- 네이버스마트 에디터
- HTML5
- java
- spring form tag
- Oracle
- @RequestBody
- 한글
Archives
- Today
- Total
개인적인 정리
JSTL 체크박스에 체크하는 예제 하나 본문
JSP 페이지에서 체크박스 체크예제
이미 저장된 값이 다수가 있을 경우에 아래와 같이 사용하는 방법도 있겠다.
디비에 저장된 값을 불러와서 checkbox에 체크하는 것으로 사용하는 에제이다.
${aaaa.today} 에 1,3,4 이렇게 값이 들어있는 경우라고 전제를 해보자.
1
2
3
4
5
6
7
|
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today1" value ="2" <c:if test="${fn:contains(aaaa.today, '2')}" > checked</c:if>/>월</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today2" value ="3" <c:if test="${fn:contains(aaaa.today, '3')}" > checked</c:if>/>화</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today3" value ="4" <c:if test="${fn:contains(aaaa.today, '4')}" > checked</c:if>/>수</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today4" value ="5" <c:if test="${fn:contains(aaaa.today, '5')}" > checked</c:if>/>목</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today5" value ="6" <c:if test="${fn:contains(aaaa.today, '6')}" > checked</c:if>/>금</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today6" value ="7" <c:if test="${fn:contains(aaaa.today, '7')}" > checked</c:if>/>토</label>
<label class="checkbox-inline" for="checkbox"><input type="checkbox" name="today" id="today7" value ="1" <c:if test="${fn:contains(aaaa.today, '1')}" > checked</c:if>/>일</label>
|
cs |
'전자정부표준프레임워크' 카테고리의 다른 글
이클립스에서 한글이 깨질때 (0) | 2022.07.17 |
---|---|
api로 데이타 전송(GET) (0) | 2022.04.14 |
api 로 데이타 전송(post) (0) | 2022.04.14 |
api 파일 전송 (0) | 2022.04.14 |
Apache Log4j 2 보안취약점 조치 (0) | 2021.12.13 |
JSTL 날짜에 요일 출력하기 (0) | 2021.11.30 |
JSTL 날짜 계산 (0) | 2021.11.30 |
JSTL 오늘 날짜 (0) | 2021.11.27 |
Comments