jquery checkbox 전체 선택, 전체 선택 취소

979 단어 JavaScriptjquery
<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_1″ />1<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_2″ />2<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_3″ />3<br />

<input type=”checkbox” name=”checkbox_name[]” id=”checkbox_name_4″ />4<br />

<input type=”checkbox” name=”checkedAll” id=”checkedAll”/>  /    

<script type=”text/javascript”><!–
$(function() {
$(“#checkedAll”).click(function() {
if ($(this).attr(“checked”) == true) { //   
$(“input[@name='checkbox_name[]‘]”).each(function() {
$(this).attr(“checked”, true);
});
} else { //     
$(“input[@name='checkbox_name[]‘]”).each(function() {
$(this).attr(“checked”, false);
});
}
});
});
// –></script>

좋은 웹페이지 즐겨찾기