限制要检查的复选框数量 jQuery
我有一个网页,其中有几组复选框(在每组中,所有复选框共享同一类)。 我不仅想限制可以检查的复选框的数量,还想限制以下内容 - 如果要检查的复选框的最大数量是 3,并且用户检查了第四个复选框,而不是显示消息,我想取消选择最长时间前选择的复选框。考虑到我有多组复选框并且每组都有不同的最大允许复选框数量,这是如何实现的?
顺便说一句,我没有使用 jQuery UI 复选框元素。
谢谢!
I have a web page with several groups of checkboxes (within each group, all checkboxes share the same class).
I want not only to limit the number of checkboxes that could be checked, but also the following - if the maximum number of checkboxes to be checked is 3, and the user checked a 4th checkbox, instead of showing a message, I would like to deselect the checkbox that was selected the longest time ago. How is this achieved considering I have multiple groups of checkboxes and each group has a different maximum allowed checkboxes number?
Btw, I am not using the jQuery UI checkbox element.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,您必须:
的以下功能:
.change()
、.live()
或.bind()
附加事件,)、
.parents()
来选择容器复选框组中,.each()
函数可以遍历同一组(上面提到的同一容器)内的所有选中复选框,通过使用这些功能,您应该实现您想要的效果 需要。
First of all, you have to:
You can use the following features of jQuery:
.delegate()
,.change()
,.live()
or.bind()
to attach events,data-
HTML attributes to store JS timestamps (eg. you can have<input type="checkbox" data-checked="1310950561097" />
),.parents()
to select the container of the checkboxes' group,.each()
function to walk through all the checked checkboxes within same group (same container mentioned above),By employing these features you should achieve what you need.
要将事件附加到一组复选框,您可以使用 jQuery 的
delegate
方法,如下所示:to append an event to a group of checkboxes you use jQuery's
delegate
method like this:我对这个问题的第一个想法是:
JS Fiddle demo。
这种方法的问题:
类
的所有复选框。参考文献:
:checkbox
-selector。push()
。index()
。eq()
。removeProp()
。splice()
。My first thoughts for this problem are:
JS Fiddle demo.
Problems with this approach:
class
.References:
:checkbox
-selector.push()
.index()
.eq()
.removeProp()
.splice()
.