jquery获取选中的复选框

前端之家收集整理的这篇文章主要介绍了jquery获取选中的复选框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试获取复选框列表和已检查的计数.我有这个:
var obj = $(this).closest('li').find(':checkBox');

        var childCount=$(obj).size();
        var checkedCount=$(obj).(':checked').length;

我在checkedCount上收到错误

??

解决方法

您需要使用 filter()功能
var obj = $(this).closest('li').find(':checkBox');

    var childCount = obj.size();
    var checkedCount =  obj.filter(':checked').length;

filter
Reduce the set of matched elements to those that match the selector or pass the function’s test.

此外,您不需要使用$()包装obj,因为它已经是一个jQuery对象.

原文链接:/jquery/176782.html

猜你在找的jQuery相关文章