如何使用Jquery统计检查的CheckBoxList

发布于 2024-11-15 07:16:04 字数 92 浏览 1 评论 0原文

我用以下关键字搜索但找不到。

javascript CheckBoxList api

jquery CheckBoxList 检查计数

I have search with the following keyword but couldn't find.

javascript CheckBoxList api

jquery CheckBoxList checked count

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

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

发布评论

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

评论(1

踏月而来 2024-11-22 07:16:04

以下应该为您提供页面上选中的复选框的总数

var count = $(':checkbox:checked').length;

如果您想将其限制为仅给给定的 CheckBoxList,您可以为此复选框列表分配一些类,然后:

var count = $('.someClass :checkbox:checked').length;

The following should give you the total number of checked checkboxes on the page

var count = $(':checkbox:checked').length;

If you want to restrict it only to a given CheckBoxList you could assign this checkboxlist some class and then:

var count = $('.someClass :checkbox:checked').length;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文