일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 게시판
- https://velog.io/@velopert/create-typescript-react-component
- 출처 : https://webdir.tistory.com/506
- toString
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- object
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
Archives
- Today
- Total
Back Ground
jQuery - checked 처리 본문
1. checked 여부 확인
|
2. checked/unchecked 처리
1 2 3 4 | <p> $("input:checkbox[id='ID']").prop("checked", true); /* by ID */ $("input:checkbox[name='NAME']").prop("checked", false); /* by NAME */ </p> |
3. 특정 라디오버튼 선택 / 모든 라디오버튼 선택해제
1 2 | $("input:radio[name='NAME']:radio[value='VALUE']").attr("checked",true); $("input:radio[name='NAME']").removeAttr("checked"); |
전체선택 체크박스를 선택하면 그 아래의 모든 체크박스를 선택해주는 것을 만들어보자.
1 2 3 4 5 | <label><input type='checkbox' id='check_all' class='input_check' /> <b>전체선택</b></label> <ul class='select_subject'> <label><input type='checkbox' class='input_check' name='class[1]' value='1' /> <b>1</b></label> <label><input type='checkbox' class='input_check' name='class[2]' value='2' /> <b>2</b></label> </ul> |
이런식으로 html이 있고, javascript 부분은
1 2 3 4 5 6 7 8 9 | <p> $(function(){ $("#check_all").click(function(){ var chk = $(this).is(":checked");//.attr('checked'); if(chk) $(".select_subject input").prop('checked', true); else $(".select_subject input").prop('checked', false); }); }); </p> |
같이 해주면 된다.
출처:http://hobbiez.tistory.com/321
'Javascript > JQuery' 카테고리의 다른 글
jQGrid get selected row 선택된 줄의 정보 가져오기 (0) | 2016.09.01 |
---|---|
jQuery - .is() 요소중 하나가 일치하는 경우 (0) | 2016.08.31 |
jQuery ui theme 테마 (0) | 2016.08.31 |
jQGrid - (checkbox) 생성 및 제어 (5) | 2016.08.31 |
daterangepicker 날짜 지정하기 (1) | 2016.08.31 |
Comments