일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- php 취약점
- roundcube
- Mail Server
- 자바스크립트
- PHP
- 안드로이드 푸시
- UML
- 안드로이드 gcm
- 설치
- soundpool
- 자동 생성
- 안드로이드 푸쉬
- FCM
- html5
- chart.js
- android 효과음
- curl
- not working
- dovecot
- php 시큐어코딩
- xe
- Android
- 폼메일
- C#
- javascript
- 안드로이드
- 우분투
- WebView
- C# IO
- mysql
- Today
- Total
그러냐
checkbox all checked 본문
// 체크 박스 모두 체크
$("#checkAll").click(function() {
$("input[name=box]:checkbox").each(function() {
$(this).attr("checked", true);
});
});
// 체크 박스 모두 해제
$("#uncheckAll").click(function() {
$("input[name=box]:checkbox").each(function() {
$(this).attr("checked", false);
});
});
// 체크 되어 있는 값 추출
$("#getCheckedAll").click(function() {
$("input[name=box]:checked").each(function() {
var test = $(this).val();
console.log(test);
});
});
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(function(){ $("#allchk").click(function(){ if($("#allchk").prop("checked")) { $("input[type=checkbox]").prop("checked",true); } else { $("input[type=checkbox]").prop("checked",false); } })})
</script>
function allchk(){ if ($("input:checkbox[id='allcheckbox']").is(":checked")){ $(".chkbox_group").attr("checked", true); }else{ $(".chkbox_group").attr("checked", false); } }
스크립트로는 아래와 같이 가능
function allchk(ts){
var n_obj = document.getElementsByName("chk_fctr");
if (ts.checked==true){
for (var i = 0; i< n_obj.length ; i++){
n_obj[i].checked = true;
}
}else{
for (var i = 0; i< n_obj.length ; i++){
n_obj[i].checked = false;
}
}
}
'jquery' 카테고리의 다른 글
IE 8 에서 Label 태그 정상작동 안하는 경우 해결방법 (0) | 2017.12.07 |
---|---|
[jQuery] Select박스 option 값 선택하기 (0) | 2017.04.25 |
제이쿼리, 그래프, 그래프 종결자 (0) | 2016.01.28 |
사진 보기 lightGallery - 아파치 라이센스 (0) | 2016.01.27 |
[XE] 제이쿼리로 에디터에 내용 넣기 (0) | 2016.01.27 |