在jQuery中获取所有选定复选框值的最佳方法

Best way to get all selected checkboxes VALUES in jQuery(在jQuery中获取所有选定复选框值的最佳方法)
本文介绍了在jQuery中获取所有选定复选框值的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找通过 jQuery 选择的所有复选框的 VALUE.

I am looking to get all checkboxes' VALUE which have been selected through jQuery.

推荐答案

您希望 :checkbox:checked 选择器和 map 创建一个值数组:

You want the :checkbox:checked selector and map to create an array of the values:

var checkedValues = $('input:checkbox:checked').map(function() {
    return this.value;
}).get();

如果您的复选框有一个共享类,那么使用它会更快,例如.$('.mycheckboxes:checked'),或用于通用名称 $('input[name="Foo"]:checked')

If your checkboxes have a shared class it would be faster to use that instead, eg. $('.mycheckboxes:checked'), or for a common name $('input[name="Foo"]:checked')

- 更新-

如果您不需要 IE 支持,那么您现在可以使用箭头函数使 map() 调用更简洁:

If you don't need IE support then you can now make the map() call more succinct by using an arrow function:

var checkedValues = $('input:checkbox:checked').map((i, el) => el.value).get();

这篇关于在jQuery中获取所有选定复选框值的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)
Bind multiple parameters from route and body to a model in ASP.NET Core(在ASP.NET Core中将路由和主体中的多个参数绑定到一个模型)
Custom model binding in AspNet Core WebApi?(AspNet Core WebApi中的自定义模型绑定?)
How to minify in .net core mvc view?(如何在.Net核心MVC视图中缩小?)