98

我想遍历复选框组'locationthemes'并构建一个包含所有选定值的字符串。So when checkbox 2 and 4 are selected the result would be: "3,8"

<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>

我在这里检查:http: //api.jquery.com/checked-selector/但没有示例如何按名称选择复选框组。

我怎样才能做到这一点?

4

12 回答 12

209

在 jQuery 中,只需使用属性选择器,如

$('input[name="locationthemes"]:checked');

选择名称为“locationthemes”的所有选中输入

console.log($('input[name="locationthemes"]:checked').serialize());

//or

$('input[name="locationthemes"]:checked').each(function() {
   console.log(this.value);
});

演示


VanillaJS 中

[].forEach.call(document.querySelectorAll('input[name="locationthemes"]:checked'), function(cb) {
   console.log(cb.value); 
});

演示


在 ES6/扩展运算符中

[...document.querySelectorAll('input[name="locationthemes"]:checked')]
   .forEach((cb) => console.log(cb.value));

演示

于 2012-07-02T11:30:59.373 回答
35
$('input:checkbox[name=locationthemes]:checked').each(function() 
{
   // add $(this).val() to your array
});

工作演示

或者

使用 jQuery 的is()功能:

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

​</p>

于 2012-07-02T11:33:24.390 回答
22

映射数组是最快和最干净的。

var array = $.map($('input[name="locationthemes"]:checked'), function(c){return c.value; })

将返回值作为数组,如:

array => [2,3]

假设城堡和谷仓被检查,而其他人没有。

于 2016-03-03T19:08:35.197 回答
15

$("#locationthemes").prop("checked")

于 2016-05-16T15:37:19.923 回答
14

使用jquery的map功能

var checkboxValues = [];
$('input[name=checkboxName]:checked').map(function() {
            checkboxValues.push($(this).val());
});
于 2015-03-24T19:13:24.210 回答
5
You can also use the below code
$("input:checkbox:checked").map(function()
{
return $(this).val();
}).get();
于 2014-02-24T11:05:39.727 回答
5

一种更现代的方法:

const selectedValues = $('input[name="locationthemes"]:checked').map( function () { 
        return $(this).val(); 
    })
    .get()
    .join(', ');

我们首先找到所有具有给定名称的选中复选框,然后 jQuery 的 map() 遍历它们中的每一个,调用回调以获取值,并将结果作为新的 jQuery 集合返回,该集合现在包含复选框值。然后我们调用 get() 来获取一个值数组,然后 join() 将它们连接成一个字符串 - 然后将其分配给常量 selectedValues。

于 2020-08-27T09:51:57.237 回答
4
var SlectedList = new Array();
$("input.yorcheckboxclass:checked").each(function() {
     SlectedList.push($(this).val());
});
于 2019-03-06T18:57:39.840 回答
2

所以全部在一行中:

var checkedItemsAsString = $('[id*="checkbox"]:checked').map(function() { return $(this).val().toString(); } ).get().join(",");

..关于选择器的注释[id*="checkbox"],它将抓取其中包含字符串“复选框”的任何项目。这里有点笨拙,但如果您试图从 .NET CheckBoxList 之类的东西中提取选定的值,那就太好了。在这种情况下,“复选框”将是您为 CheckBoxList 控件指定的名称。

于 2015-07-02T23:05:32.083 回答
2

来源 - 更多细节

使用 jQuery 获取选定的复选框值

然后我们编写 jQuery 脚本来使用 jQuery each() 在数组中获取选中的复选框值。使用这个 jQuery 函数,它运行一个循环来获取检查的值并将其放入一个数组中。

<!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Get Selected Checkboxes Value Using jQuery</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            $(".btn").click(function() {
                var locationthemes = [];
                $.each($("input[name='locationthemes']:checked"), function() {
                    locationthemes.push($(this).val());
                });
                alert("My location themes colors are: " + locationthemes.join(", "));
            });
        });
    </script>
    </head>
    <body>
        <form method="POST">
        <h3>Select your location themes:</h3>
        <input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
        <label for="checkbox-1">Castle</label>
        <input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
        <label for="checkbox-2">Barn</label>
        <input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
        <label for="checkbox-3">Restaurant</label>
        <input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
        <label for="checkbox-4">Bar</label>
        <br>
        <button type="button" class="btn">Get Values</button>
    </form>
    </body>
    </html>
于 2018-08-12T06:12:42.780 回答
1

Jquery 3.3.1,在按钮单击时获取所有选中复选框的值

$(document).ready(function(){
 $(".btn-submit").click(function(){
  $('.cbCheck:checkbox:checked').each(function(){
	alert($(this).val())
  });
 });			
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" id="vehicle1" name="vehicle1"  class="cbCheck" value="Bike">
  <label for="vehicle1"> I have a bike</label><br>
  <input type="checkbox" id="vehicle2" name="vehicle2"  class="cbCheck" value="Car">
  <label for="vehicle2"> I have a car</label><br>
  <input type="checkbox" id="vehicle3" name="vehicle3"  class="cbCheck" value="Boat">
  <label for="vehicle3"> I have a boat</label><br><br>
  <input type="submit" value="Submit" class="btn-submit">

于 2020-04-27T17:17:10.653 回答
1
var voyageId = new Array(); 
$("input[name='voyageId[]']:checked:enabled").each(function () {
   voyageId.push($(this).val());
});      
于 2018-05-21T13:26:59.033 回答