本文介绍了JQuery:验证是否检查了一个输入(类型复选框)的集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有类型复选框的输入集合
I have collection of inputs of type checkbox
var collection = $('.className');
console.log(collection);
结果是:
[span.className, span.className, span.className]
检查是否至少有一个检查
how to check if there is at least one checked
推荐答案
您可以使用选择器,然后检查 length
property查看是否有任何元素匹配:
You can use the :checked
selector, and then check the length
property to see if any elements were matched:
if ($(".className:checked").length) {
//At least 1 is checked!
}
$ b 元素,而不是输入
元素。如果复选框是 .className
元素的后代,请在:checked
选择器之前添加一个空格。
However, your output looks like you have span
elements, not input
elements. If the checkboxes are descendants of the .className
elements, add a space before the :checked
selector.
这篇关于JQuery:验证是否检查了一个输入(类型复选框)的集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!