当前位置:  开发笔记 > 编程语言 > 正文

获取阵列中的所有选中复选框

如何解决《获取阵列中的所有选中复选框》经验,为你挑选了9个好方法。

所以我有这些复选框:





等等.大约有6个并且是手工编码的(即不是从数据库中提取的),因此它们可能会暂时保持不变.

我的问题是如何将它们全部放入数组中(在javascript中),因此我可以在$.post使用Jquery 发出AJAX 请求时使用它们.

有什么想法吗?

编辑:我只希望将选中的复选框添加到数组中



1> ybo..:

格式化:

$("input:checkbox[name=type]:checked").each(function(){
    yourArray.push($(this).val());
});

希望它会奏效.


你也可以使用`map`而不是`each`来定义你的数组:`var yourArray = $("input:checkbox [name = type]:checked").map(function(){return $(this).val ()}).得到()`
`function get_selected_checkboxes_array(){var ch_list = Array(); $(“ input:checkbox [type = checkbox]:checked”)。each(function(){ch_list.push($(this).val());}); 返回ch_list; }`

2> 小智..:
var chk_arr =  document.getElementsByName("chkRights[]");
var chklength = chk_arr.length;             

for(k=0;k< chklength;k++)
{
    chk_arr[k].checked = false;
} 


据我了解上面的代码,它遍历所有复选框并取消选中它们.这个答案如何与这个问题联系起来?

3> Barbaros Alp..:

我没有测试它,但它应该工作




4> 小智..:

纯JS

对于那些不想使用jQuery的人

var array = []
var checkboxes = document.querySelectorAll('input[type=checkbox]:checked')

for (var i = 0; i < checkboxes.length; i++) {
  array.push(checkboxes[i].value)
}



5> Georg Schöll..:

这应该做的伎俩:

$('input:checked');

我不认为你有其他可以检查的元素,但如果你这样做,你必须使它更具体:

$('input:checkbox:checked');

$('input:checkbox').filter(':checked');



6> LeeGee..:

在MooTools 1.3(撰写本文时最新):

var array = [];
$$("input[type=checkbox]:checked").each(function(i){
    array.push( i.value );
});


没有意识到问题的年龄或解决方案的性质是相关的.
因为我在使用MooTools寻找相同问题的答案时发现了这个问题.

7> 小智..:

在Javascript中它就像这样(演示链接):

// get selected checkboxes
function getSelectedChbox(frm) {
  var selchbox = [];// array that will store the value of selected checkboxes
  // gets all the input tags in frm, and their number
  var inpfields = frm.getElementsByTagName('input');
  var nr_inpfields = inpfields.length;
  // traverse the inpfields elements, and adds the value of selected (checked) checkbox in selchbox
  for(var i=0; i



8> Terite..:

如果你想使用一个vanilla JS,你可以像@ zahid-ullah那样做,但是避免循环:

  var values = [].filter.call(document.getElementsByName('fruits[]'), function(c) {
    return c.checked;
  }).map(function(c) {
    return c.value;
  });

ES6中的相同代码看起来更好:

var values = [].filter.call(document.getElementsByName('fruits[]'), (c) => c.checked).map(c => c.value);

window.serialize = function serialize() {
  var values = [].filter.call(document.getElementsByName('fruits[]'), function(c) {
    return c.checked;
  }).map(function(c) {
    return c.value;
  });
  document.getElementById('serialized').innerText = JSON.stringify(values);
}
label {
  display: block;
}








9> quotesBro..:

ES6版本:

const values = Array
  .from(document.querySelectorAll('input[type="checkbox"]'))
  .filter((checkbox) => checkbox.checked)
  .map((checkbox) => checkbox.value);

const values = Array
  .from(document.querySelectorAll('input[type="checkbox"]'))
  .filter((checkbox) => checkbox.checked)
  .map((checkbox) => checkbox.value);
function getCheckedValues() {
  return Array.from(document.querySelectorAll('input[type="checkbox"]'))
  .filter((checkbox) => checkbox.checked)
  .map((checkbox) => checkbox.value);
}

const resultEl = document.getElementById('result');

document.getElementById('showResult').addEventListener('click', () => {
  resultEl.innerHTML = getCheckedValues();
});
推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有