jquery复选框获取选中的值并将每个值显示到特定容器

时间:2016-05-04 05:44:59

标签: jquery html

我想获取复选框值并将每个值显示到特定容器。非常感谢你!

HTML

<input type="checkbox" id="checkbox-1" class="choices-yn-1" value="1">
<input type="checkbox" id="checkbox-2" class="choices-yn-2" value="2">
<input type="checkbox" id="checkbox-3" class="choices-yn-3" value="3">
<input type="checkbox" id="checkbox-4" class="choices-yn-4" value="4">

<input type="text" id="container-1">
<input type="text" id="container-2">
<input type="text" id="container-3">
<input type="text" id="container-4">

SCRIPT

$('input#checkbox-1').on('change', function () {
    $('input#checkbox-1').not(this).prop('checked', false);
    var checkedValues = $('input:checkbox:checked').map(function () {
        return this.value;
    }).get();

    $('#container-1').val(checkedValues);

});

2 个答案:

答案 0 :(得分:1)

尝试以下

$('input[type="checkbox"]').on('change', function () {
 if($(this).is(':checked')) {
    $('#container-'+$(this).attr(id).split('-')[1]).val($(this).val());
 }
});

答案 1 :(得分:1)

使用JQuery is(":checked")

$('input[type="checkbox"]').on("change", function(e) {
    $this = $(this);
    var container_id = ($this.attr('id')).replace("checkbox","container");
    $container = $("#"+container_id);
    if($this.is(":checked")) 
        $container.val($this.val());
    else
       $container.val("");
})