검색결과 리스트
CheckBox에 해당되는 글 1건
- 2013.02.08 같은 아이디인 여러 체크박스를 전체선택
글
$(document).ready(function() {
$("#select_chk").click(select_check_click);
$("#select_all").click(select_all_click);
});
// select_chk버튼을 눌렀을 때 체크박스가 체크된 수를 체크한다.
select_check_click = function(e) {
var selected_list = new Array();
$("input:checkbox[id=selector]").each(function() {
if($(this).is(":checked") == true) {
selected_list.push($(this).val());
}
});
alert(selected_list.length);
}
// select_all버튼을 눌렀을 때 selector 체크박스들을 모두 선택/해제한다.
select_all_click = function(e) {
if($("input:checkbox[id=select_all]").is(":checked") == true) {
$("input:checkbox[id=selector").each(function() {
$(this).attr("checked", "checked");
});
}
else {
$("input:checkbox[id=selector]").each(function() {
$(this).removeAttr("checked");
});
}
}
<!-- select_all을 눌렀을 때 selector 체크박스들이 모두 선택/해제 -->
<input type="checkbox" id="select_all" value="all" />
<input type="checkbox" id="selector" value="1" />
<input type="checkbox" id="selector" value="2" />
<input type="checkbox" id="selector" value="3" />
<input type="button" id="select_chk" value="체크" />
'-- JQuery' 카테고리의 다른 글
How to Avoid Double Clicking With jQuery? (0) | 2013.10.04 |
---|---|
신규 Form을 만들어 기존 Form의 파라미터로 POST하기 (0) | 2013.09.27 |
Checking if jQuery is loaded vs. ready (0) | 2012.10.09 |
JQuery Sortable (0) | 2012.09.04 |
JQuery Sortable로 Sort 시 Google Chart가 사라지는 현상 (0) | 2012.09.03 |
RECENT COMMENT