本文介绍了jquery多个复选框数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<input type="checkbox" name="options[]" value="1" />
<input type="checkbox" name="options[]" value="2" />
<input type="checkbox" name="options[]" value="3" />
<input type="checkbox" name="options[]" value="4" />
<input type="checkbox" name="options[]" value="5" />
如何使用选中的复选框的值创建数组?
How I can make an array with values of checkboxes that are checked?
注意:(重要)我需要一个像 [1, 2, 3, 4, 5] 而不是像 ["1", "2", "3", "4", "5"] 的数组.
注意:大约有 50 个复选框.
NOTE: (IMPORTANT) I need an array like [1, 2, 3, 4, 5] and not like ["1", "2", "3", "4", "5"] .
NOTE: There are around 50 checkboxes.
有人可以帮我吗?请!
谢谢!
推荐答案
var checked = []
$("input[name='options[]']:checked").each(function ()
{
checked.push(parseInt($(this).val()));
});
这篇关于jquery多个复选框数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!