gpt4 book ai didi

jquery 获取选中复选框

转载 作者:行者123 更新时间:2023-12-03 22:20:45 25 4
gpt4 key购买 nike

我正在尝试获取复选框列表和已检查的计数。我有这个:

        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 获取选中复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5896128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com