HTML代码:
<input value=”” id=”checkall” type=”checkbox”>全选
<input value=”” name=” id[]” type=”checkbox”>选项一
<input value=”” name =”id[]” type=”checkbox”>选项二
<input value=”” name =” id[]” type=”checkbox”>选项三
<input value=”” name =” id[]” type=”checkbox”>选项四
<input value=”” name =” id[]” type=”checkbox”>选项五
JQUERY代码:
$(document).ready(function(){
//全选或全不选
$(“#checkall”).click(function(){
CheckAll();
});
});
function CheckAll(){
if($(“#checkall”).attr(‘checked’)){
$(“input[name=’id[]’]”).each(function(){
$(this).attr(“checked”,true);
});
}else{
$(“input[name=’id[]’]”).each(function(){
$(this).attr(“checked”,false);
});
}
}