gpt4 book ai didi

javascript - 我想获取所有选中复选框的值

转载 作者:行者123 更新时间:2023-11-30 07:59:55 27 4
gpt4 key购买 nike

$(document).ready(function() {
$('input[type = "checkbox"]').change(function() { //when a checkbox is checked
var nvalues = $('input[type="checkbox"]:checked').map(function() {
return this.value;
}).get();
if (nvalues.length > 0) {
var fin = nvalues.value;
$('#here').html(fin);
} else {
$('#here').html("WTF");
}
});
});

这里我使用 map 将选中的值存储为数组,但输出为空。

最佳答案

查看代码中的注释:

$(document).ready(function() {
$(':checkbox').change(function() { // :checkbox pseudo-selector selects all checkboxes
var nvalues = []; // Initialize empty array

$(':checkbox:checked').each(function() { // For all checked checkboxes
nvalues.push($(this).val()); // Push current checkbox value in array
});


if (nvalues.length > 0) {
$('#here').html(nvalues.toString()); // Array to string conversion
} else {
$('#here').html("WTF");
}
});
});

关于javascript - 我想获取所有选中复选框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30612383/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com