250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- #이클립스
- Like
- 소스코드 맵
- #JVM
- 설정
- Oracle
- #Oracle
- 스프링
- html
- Eclipse
- #java
- #자바가상머신
- 설치
- CodeGlance
- mariadb
- #오라클
- 이클립스
- #자바
- Plugins
- 플러그인
- log4j2
- 스프링부트
- 인텔리제이
- 환경설정
- Spring
- springboot
- log4j
- #eclipse
- 오라클
- IntelliJ
Archives
- Today
- Total
커피와 개발자
[jQuery] selectbox, checkbox 컨트롤 본문
728x90
select box
select box의 내용 가져오기
select box의 값 설정
check box
특정 name의 check box object를 순차적으로 가져오기
특정 name의 checked 상태인 check box object를 순차적으로 가져오기
특정 name의 check box의 checked된 수
select box의 내용 가져오기
$('#selectboxID > option:selected').val();
select box의 값 설정
$('#selectboxID > option[value=설정대상 value값]').attr('selected','true');
check box
특정 name의 check box object를 순차적으로 가져오기
$('input:checkbox[name=체크박스이름]').each(function(i){
$(this).attr('checked',''); //checkbox의 checked상태 해제
});
특정 name의 checked 상태인 check box object를 순차적으로 가져오기
$('input:checkbox[name='+chkName+']:checked').each(function(i){
$(this).attr('checked',''); //checkbox의 checked상태 해제
});
특정 name의 check box의 checked된 수
$('input:checkbox[name='+체크박스명+']:checked).length;
728x90
'웹개발 > 제이쿼리(jQuery)' 카테고리의 다른 글
[Ajax] async 비동기식 처리와 동기식 처리 (10) | 2022.10.11 |
---|---|
[jQuery] $(function())과 $(document).ready(function)) (0) | 2011.05.03 |
[jQuery] form.submit() (0) | 2011.04.21 |
[jQuery] each() (0) | 2011.04.20 |
[jQuery] append() 한 내용에 대한 click() 접근이 안되는 경우 (0) | 2011.04.14 |
Comments