64

如何获取使用 jQuery 选择的复选框的值?

我的 HTML 代码如下:

<input  id="ad_Checkbox1" class="ads_Checkbox" type="checkbox" value="1" />
<input  id="ad_Checkbox2" class="ads_Checkbox" type="checkbox" value="2" />
<input  id="ad_Checkbox3" class="ads_Checkbox" type="checkbox" value="3" />
<input  id="ad_Checkbox4" class="ads_Checkbox" type="checkbox" value="4" />
<input type="button" id="save_value" name="save_value" value="Save" />
4

12 回答 12

128

尝试这个

<input name="selector[]" id="ad_Checkbox1" class="ads_Checkbox" type="checkbox" value="1" />
<input name="selector[]" id="ad_Checkbox2" class="ads_Checkbox" type="checkbox" value="2" />
<input name="selector[]" id="ad_Checkbox3" class="ads_Checkbox" type="checkbox" value="3" />
<input name="selector[]" id="ad_Checkbox4" class="ads_Checkbox" type="checkbox" value="4" />
<input type="button" id="save_value" name="save_value" value="Save" />

功能

    $(function(){
      $('#save_value').click(function(){
        var val = [];
        $(':checkbox:checked').each(function(i){
          val[i] = $(this).val();
        });
      });
    });
于 2012-08-14T04:32:22.307 回答
72

要从多个选中的复选框中获取一组值,请使用 jQuery map/get 函数:

$('input[type=checkbox]:checked').map(function(_, el) {
    return $(el).val();
}).get();

这将返回带有检查值的数组,如下所示:['1', '2']

这是关于 jsfiddle 的工作示例:http: //jsfiddle.net/7PV2e/

于 2013-07-15T15:15:21.193 回答
25

你可以这样做,

$('.ads_Checkbox:checked')

您可以遍历它们each()并用复选框值填充数组。

现场演示

获取数组中选中复选框的值

var i = 0;
$('#save_value').click(function () {
       var arr = [];
       $('.ads_Checkbox:checked').each(function () {
           arr[i++] = $(this).val();
       });      
});

编辑,使用 .map()

您还可以使用jQuery.mapget()获取选定复选框值的数组。

作为旁注,使用this.value而不是$(this).val()会提供更好的性能。

现场演示

$('#save_value').click(function(){
    var arr = $('.ads_Checkbox:checked').map(function(){
        return this.value;
    }).get();
}); 
于 2012-08-14T04:30:03.367 回答
7

你可以像这样得到它们

$('#save_value').click(function() {
    $('.ads_Checkbox:checked').each(function() {
        alert($(this).val());
    });
});

jsfiddle

于 2012-08-14T04:33:56.403 回答
7
$('input:checked').map(function(i, e) {return e.value}).toArray();
于 2017-12-14T15:09:54.017 回答
6

试试这个,jQuery 如何获取多个复选框的值

对于演示或更多示例

    $(document).ready(function() {
        $(".btn_click").click(function(){
            var test = new Array();
            $("input[name='programming']:checked").each(function() {
                test.push($(this).val());
            });
 
            alert("My favourite programming languages are: " + test);
        });
    });
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Get Values of Selected Checboxes</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> 
</head>
<body>
    <form>
        <h3>Select your favorite Programming Languages :</h3>
        <label><input type="checkbox" value="PHP" name="programming"> PHP</label>
        <label><input type="checkbox" value="Java" name="programming"> Java</label>
        <label><input type="checkbox" value="Ruby" name="programming"> Ruby</label>
        <label><input type="checkbox" value="Python" name="programming"> Python</label>
        <label><input type="checkbox" value="JavaScript" name="programming"> JavaScript</label>
        <label><input type="checkbox" value="Rust" name="programming">Rust</label>
        <label><input type="checkbox" value="C" name="programming"> C</label>
        <br>
        <button type="button" class="btn_click" style="margin-top: 10px;">Click here to Get Values</button>
    </form>
</body>
</html>  

于 2019-04-25T05:53:13.827 回答
3

你可以试试;

$('#save_value').click(function(){
    var final = '';
    $('.ads_Checkbox:checked').each(function(){        
        var values = $(this).val();
        final += values;
    });
    alert(final);
});

这将在单个实例中返回所有复选框值。

是一个有效的现场演示。

于 2012-08-14T04:46:29.230 回答
1

由于您对所有复选框都有相同的类名,因此

   $(".ads_Checkbox") 

会给你所有的复选框,然后你可以使用每个循环来迭代它们,比如

$(".ads_Checkbox:checked").each(function(){
   alert($(this).val());
});
于 2012-08-14T04:34:54.037 回答
1

你也可以使用$('input[name="selector[]"]').serialize();. 它返回 URL 编码字符串,如:“selector%5B%5D=1&selector%5B%5D=3”

于 2013-09-03T08:43:04.850 回答
0

尝试getPrameterValues()从多个复选框中获取值。

于 2013-03-18T05:29:06.167 回答
0

试试这个..(伙计们,我是一只新蜜蜂..所以如果我错了,我真的很抱歉。但我通过这种方式找到了解决方案。)

var suggestion = [];
$('#health_condition_name:checked').each(function (j, ob) {

    var odata = {
        health_condition_name: $(ob).val()
    };

    health.push(odata);
});
于 2016-08-12T20:29:29.460 回答
-1

$(document).ready(function(){
$(".chk").click(function(){
var d = $("input[name=test]"); if(d.is(":checked")){
//
}
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" name="test"> `test1`
<input type="checkbox" name="test"> `test2`
<input type="checkbox" name="test"> `test3`
<input type="button" value="check" class='chk'/>

于 2019-03-21T12:59:46.233 回答