限制要检查的复选框数量 jQuery

发布于 2024-11-24 13:33:16 字数 214 浏览 0 评论 0原文

我有一个网页,其中有几组复选框(在每组中,所有复选框共享同一类)。 我不仅想限制可以检查的复选框的数量,还想限制以下内容 - 如果要检查的复选框的最大数量是 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 技术交流群。

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

发布评论

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

评论(3

度的依靠╰つ 2024-12-01 13:33:16

首先,您必须:

  1. 将事件附加到这些复选框,
  2. 存储有关何时选中它们的信息,
  3. 以防选中的复选框是第四个,找到第一个选中的复选框并取消选中它

的以下功能:

  • 您可以使用jQuery >.delegate()、.change().live().bind() 附加事件,
  • < code>data- 要存储的 HTML 属性JS 时间戳(例如,您可以使用 )、
  • .parents() 来选择容器复选框组中,
  • jQuery 的 .each() 函数可以遍历同一组(上面提到的同一容器)内的所有选中复选框,

通过使用这些功能,您应该实现您想要的效果 需要。

First of all, you have to:

  1. attach events to these checkboxes
  2. store information about when they were checked
  3. in case the checked checkbox is the fourth one, find the first one checkbox checked and uncheck it

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,
  • jQuery's .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.

谁对谁错谁最难过 2024-12-01 13:33:16

要将事件附加到一组复选框,您可以使用 jQuery 的 delegate 方法,如下所示:

$('#checkbox-container').delegate('checkbox', 'change', function (event) {
  // event.target is the clicked checkbox element here
});

to append an event to a group of checkboxes you use jQuery's delegate method like this:

$('#checkbox-container').delegate('checkbox', 'change', function (event) {
  // event.target is the clicked checkbox element here
});
寄人书 2024-12-01 13:33:16

我对这个问题的第一个想法是:

var checkorder = [];
$('input:checkbox.checkboxes').click(
    function(){
        checkorder.push($(this).index('input:checkbox'));
        if (checkorder.length > 3){
            $('input:checkbox.checkboxes').eq(checkorder[0]).removeProp('checked');
            checkorder.splice(0,1);
        }
    });

JS Fiddle demo

这种方法的问题:

  1. 它将选择应用于具有相同的所有复选框。
  2. 不区分单击以选中或取消选中复选框。

参考文献:

My first thoughts for this problem are:

var checkorder = [];
$('input:checkbox.checkboxes').click(
    function(){
        checkorder.push($(this).index('input:checkbox'));
        if (checkorder.length > 3){
            $('input:checkbox.checkboxes').eq(checkorder[0]).removeProp('checked');
            checkorder.splice(0,1);
        }
    });

JS Fiddle demo.

Problems with this approach:

  1. It applies the selection to all checkboxes with the same class.
  2. Doesn't differentiate between a click to check, or uncheck, a checkbox.

References:

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