var ID = "";
$(‘input:radio:checked‘).each(function (i) {
if ($(this).prop("checked")) {
// alert($(this).val());
ID += $(this).val() + ", "
}
});
alert(ID);
时间: 2024-11-10 12:58:03
var ID = "";
$(‘input:radio:checked‘).each(function (i) {
if ($(this).prop("checked")) {
// alert($(this).val());
ID += $(this).val() + ", "
}
});
alert(ID);