1. 程式人生 > >jquery獲取已選擇和未選擇的checkBox項以及清空所選項

jquery獲取已選擇和未選擇的checkBox項以及清空所選項

獲取已選中的:

var checkedArr = []; 
$("input[name='xxx']:checked").each(function() { 
    checkedArr.push($(this).val()); 
});

獲取未選中的:

var notCheckedArr = []; 
$("input[name='xxx']:not(:checked)").each(function() { 
    notCheckedArr.push($(this).val()); 
});

清空已選項:

$("input[name='xxx']").prop("checked",false);

初始化預設全選:

$("[name='service']").prop("checked",true); 

原文地址:https://blog.csdn.net/banjing_1993/article/details/81668646