//得到所有check
var c = $(this).parent().find('input:checkbox');
if (c.is(':checked')) {
var role = {};
role.RoleGroupID = groupId.toString();
role.MenuCode = $(this).data('menucode');
role.OperationCode = $(this).data('perationcode');
json.push(role);
i++;
}
//直接得到选中的check
if ($(this).parent().find('input:checkbox:checked'))
全选checkbox
<ul id = "list-unstyled" class="list-unstyled">
<li><input type="checkbox" value="9-DM"></li>
<li><input type="checkbox" value="10-DM"></li>
<li><input type="checkbox" value="11-DM"></li>
<li><input type="checkbox" value="12-DM"></li>
</ul> $('input[type="checkbox"]').prop('checked', 'true')
//反选checkbox
$('input[name="check"]').each(function () { // $('input[type="checkbox"]').each(function () {
$(this).prop("checked", !$(this).prop("checked"));
});