jquery获取指定class选中的checkbox值
var monitorLeveId = "";
$(".monitorLeve:checked").each(function (e) {
if (monitorLeveId == "") {
monitorLeveId = this.id;
} else {
monitorLeveId += "," + this.id;
}
});

浙公网安备 33010602011771号