JQuery CheckBox

全选 反选 全不选

//全选
$("input[type='checkbox']").not(':disabled').prop("checked", true);
//反选
$("input[type='checkbox']").not(':disabled').prop("checked", false);
//全不选
$("input[type='checkbox']").not(':disabled').each(function(){
     $(this).prop("checked", !$(this).prop("checked"));
});

单选

你可能感兴趣的:(JQuery CheckBox)