use jQuery to get values of selected checkboxes

后端 未结 12 2675
旧巷少年郎
旧巷少年郎 2020-11-27 14:44

I want to loop through the checkboxgroup \'locationthemes\' and build a string with all selected values. So when checkbox 2 and 4 are selected the result would be: \"3,8\"

12条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 15:20

    $('input:checkbox[name=locationthemes]:checked').each(function() 
    {
       // add $(this).val() to your array
    });
    

    Working Demo

    OR

    Use jQuery's is() function:

    $('input:checkbox[name=locationthemes]').each(function() 
    {    
        if($(this).is(':checked'))
          alert($(this).val());
    });
    

提交回复
热议问题