1、獲取checkbox選中個數
$("input[name='ckb-jobid']:checked").length $("input[type='checkbox']:checked").length;
2、獲取選中的值
//批量處理 $('#batchUpdate').on("click", function () { var str = ""; $("input[name='ckb-jobid']:checked").each(function (index, item) { if ($("input[name='ckb-jobid']:checked").length-1==index) { str += $(this).val(); } else { str += $(this).val() + ","; } }); });