全選 反選 全不選
//全選
$("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"));
});
單選