获取同组名为sub_ids的多选框选中的值
var SelectValue="";
var getSelectValueMenbers = $("input[name='sub_ids']:checked").each(function(j) {
if (j >= 0) {
SelectValue += $(this).val() + ","
}
});
获取同组名为ids的多选框的值
var tSelectValue="";
var getTSelectValueMenbers = $("input[name='ids']").each(function(i) {
if (i >= 0) {
tSelectValue += $(this).val() + ","
}
});