Get a list of all checked values

后端 未结 3 774
梦如初夏
梦如初夏 2021-01-26 04:30

I have a bunch of radio boxes on my HTML page. Somewhat like this:




        
3条回答
  •  春和景丽
    2021-01-26 05:15

    The following will put the value of the value attribute for each selected radio button into the arr Array:

    var arr = [];
    $(".custom:checked").each(function () {
        arr.push($(this).val());
    });
    

提交回复
热议问题