var ltid = ""; /*得到选中的值*/ $("input[name=items]:checked").each(function () { if ($(this).is(":checked")) { if (isValEmpty(ltid)) { ltid += $(this).val(); } else { ltid += "," + $(this).val(); } } }); if (isValEmpty(ltid)) { mytips("请选择要审核的会员!"); } $("#selectall").click(function () { if ($(this).is(":checked")) { $("input[name=items]").each(function () { $(this).prop("checked", true); }); } else { $("input[name=items]").each(function () { $(this).prop("checked", false); }); } });