var ID = "";
            $('input:radio:checked').each(function (i) {
                if ($(this).prop("checked")) {
                    //  alert($(this).val());
                    ID += $(this).val() + ", "
                }
            });
            alert(ID);

相关文章:

  • 2021-08-13
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-02
  • 2021-09-22
  • 2021-12-23
  • 2021-12-30
  • 2022-12-23
  • 2021-09-06
相关资源
相似解决方案