$("input[type=checkbox]").on('click', function(){
if($(this).attr("name") === "inputForAll"){ //전체선택 클릭시
if($(this).prop("checked")){
$(this).closest(".band-wrap").find("input[type=checkbox]").prop("checked",true);
}else{
$(this).closest(".band-wrap").find("input[type=checkbox]").prop("checked",false);
}
} else{ //개별 체크박스 클릭시
$(this).closest(".band-wrap").find("input[name=inputForAll]").prop("checked",false);
}
});
'jquery' 카테고리의 다른 글
$.ajax 와 $.post (0) | 2020.08.13 |
---|---|
mouseenter animation + css z-index (0) | 2020.06.25 |
반응형 a 태그 href #로 바꾸고 pc에서는 link 걸기 (0) | 2020.06.11 |
[bxslider.js] li가 1개일 때 selector 제거 (0) | 2020.06.03 |
append로 추가한 요소에 function 넣기 (0) | 2020.05.25 |
댓글