如何在Javascript中存储所有输入(复选框)元素的属性?

发布于 2024-10-10 16:21:52 字数 273 浏览 3 评论 0原文

我试图将页面中所有复选框的 name 属性存储在某种数组/数据结构中。

我该怎么做呢?

<input name="sample" type="checkbox" value="" align="left" />
<input name="sample2" type="checkbox" value="" align="left" />

名称属性将是唯一的。关于如何去做这件事有什么想法吗?

I am trying to store the name attribute of all the checkboxes in a page, in some sort of array/data structure.

How do I go about doing this?

<input name="sample" type="checkbox" value="" align="left" />
<input name="sample2" type="checkbox" value="" align="left" />

The name attribute will be unique. Any idea on how to go about doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烧了回忆取暖 2024-10-17 16:21:52

您可以使用 .map() 获取一组元素的属性并放入数组中,如下所示:

var arr = $("input[type=checkbox]").map(function() { return this.name; }).get();

还有更精简的选择器,例如 input:checkbox 甚至 :checkbox,但它们慢得多

You can use .map() to get properties of a set of elements and into an array, like this:

var arr = $("input[type=checkbox]").map(function() { return this.name; }).get();

There are slimmer selectors, like input:checkbox or even :checkbox, but they are much slower.

Oo萌小芽oO 2024-10-17 16:21:52
var store_them_here = [];
$(':checkbox').each(function(i, e) {
    store_them_here.push($(e).attr('name'));
})
var store_them_here = [];
$(':checkbox').each(function(i, e) {
    store_them_here.push($(e).attr('name'));
})
咆哮 2024-10-17 16:21:52

尝试

var result_array = [];
jQuery(':checkbox').each( function(index, Element){
  result_array.push(jQuery(this).attr('name'));
})

Try

var result_array = [];
jQuery(':checkbox').each( function(index, Element){
  result_array.push(jQuery(this).attr('name'));
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文