使用jQuery限制用户根据最小值检查复选框

时间:2013-09-10 05:06:11

标签: jquery checkbox

这里我在各自的div中有一堆复选框。

每个div都包含一个'data-min'(例如:data-min =“2”)值,以限制用户检查div中复选框的最小数量。

演示:Fiddle

HTML

<select id="count">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    <option value="6">6</option>
</select>
<br/>
<br/>
<div class="checkbox" data-toggle="false" data-min="2" style='float:left;background:yellow;width:100px'>
    <input id="checkbox-1" type="checkbox" name="Data1" value="option1" />
    <label for="checkbox-1">HTML</label>
    <br />
    <input id="checkbox-2" type="checkbox" name="Data2" value="option2" />
    <label for="checkbox-2">CSS</label>
    <br />
    <input id="checkbox-3" type="checkbox" name="Data3" value="option3" />
    <label for="checkbox-3">HTML</label>
    <br />
</div>
<div class="checkbox" data-toggle="false" data-min="2" style='float:left;margin-left:100px;background:brown;width:100px'>
    <input id="checkbox-4" type="checkbox" name="Data4" value="option4" />
    <label for="checkbox-4">CSS</label>
    <br />
    <input id="checkbox-5" type="checkbox" name="Data5" value="option5" />
    <label for="checkbox-5">HTML</label>
    <br />
    <input id="checkbox-6" type="checkbox" name="Data6" value="option6" />
    <label for="checkbox-6">CSS</label>
</div>

的jQuery

$(document).ready(function () {
    $('#count').on('change', function () {
        $('input[type=checkbox]').prop('checked', false);
        $('[data-toggle]').data('toggle', false);
    });
    $('input[type=checkbox]').on('change', function () {
        if ($('input[type=checkbox]:checked').length > $('#count').val()) {
            $(this).prop('checked', false);
        }
    });
    $('.checkbox').on('click', function (e) {
        var cnt = $('input[type="checkbox"]:checked').length;
        var cntSel = $('select').val();
        var fin = cntSel - cnt;

        var min = $('.checkbox').data('min');

        if (e.target.className == "checkbox") {
            if ($(this).data('toggle') == false) {
                $(this).data('toggle', true);
                $(this).find('input[type="checkbox"]:lt(' + fin + ')').prop('checked', true);
            } else {
                $(this).data('toggle', false);
                $(this).find('input[type="checkbox"]').prop('checked', false);
            }

        }
    });
});

我怎么能这样做,任何人都可以帮助我。

EDIT1:

  1. 在这个小提琴中,用户可以根据选择框值检查两个div的复选框。
  2. 复选框计数不应超过选择框值。
  3. 我们也应该考虑'data-min'值。
  4. 例如,

    • 如果我从选择框中选择了值'4',那么我只能检查4个复选框(总计)
    • 并且div应该包含最小的no('data-min')复选框应该选中,否则我们需要限制用户检查该div的复选框。

3 个答案:

答案 0 :(得分:2)

经过很多努力,最后我得到了答案

Fiddle

<强>的jQuery

$(document).ready(function () {
    $('#count').on('change', function () {
        //do stuff here

        //my random "on change" behaviour {
        var chkboxes = $('input[type=checkbox]:checked');
        for (var i = 0; i < chkboxes.length; i++) {
            $(chkboxes[i]).prop('checked', false);
        }
        //end of my random "on change" bahaviour}
    });

    $('input[type=checkbox]').on('change', function (e) {
        //this was deselected no need to check?
        if (!$(this).prop('checked')) {
            return false;
        }

        //checked count exceeded #count value
        if ($('input[type=checkbox]:checked').length > $('#count').val()) {
            $(this).prop('checked', false);
            alert('Count of checked checkboxes >= #count');
            return false;
        }

        //if checked check boxes count = #count, validate all divs
        if ($('input[type=checkbox]:checked').length == $('#count').val()) {
            validateDivs();
        }

        var checksLeft = parseInt($('#count').val()) - $('input[type=checkbox]:checked').length;
        var parent = $($(this).parent()[0]);
        var parentSub = parent.find('input[type=checkbox]:checked').length; //count of checked checkboxes in current parent

        if (parseInt(parent.attr('data-min')) - parentSub > checksLeft) {
            $(this).prop('checked', false);
            alert('Not enought checks left');
            return false;
        }
    });

    $('.checkbox').on('click', function (e) {
        var cnt = $('input[type="checkbox"]:checked').length;
        var cntSel = $('select').val();
        var fin = cntSel - cnt;
        var min = $(this).data('min');

        if (e.target.className == "checkbox") {
            if ($(this).data('toggle') == false) {
                $(this).data('toggle', true);
                if (fin < min) {
                    $(this).prop('checked', false);
                    alert("Minimun capacity of this table is: " + min + ".");
                } else {
                    $(this).find('input[type="checkbox"]:lt(' + fin + ')').prop('checked', true);
                }
            } else {
                $(this).data('toggle', false);
                $(this).find('input[type="checkbox"]').prop('checked', false);
            }

        }
    });
});

function validateDivs() {
    var chkboxes = $('.checkbox');
    for (var i = 0; i < chkboxes.length; i++) {
        var chks = $(chkboxes[i]).find('input[type=checkbox]:checked');
        if (chks.length < $(chkboxes[i]).attr('data-min')) {
            chks.each(function (index, checkbox) {
                $(checkbox).prop('checked', false);
            })
        }
    }
}

感谢大家,支持我解决这个问题。

答案 1 :(得分:1)

不完整,仅仅是一次性的想法http://jsfiddle.net/HNmhL/35/ 注意:$('checkboxId')。prop('checked',false)可以打破复选框,不知道怎么做,但是Pavlo说这个

$(document).ready(function () {
    $('#count').on('change', function(){
        //do stuff here

        //my random "on change" behaviour {
        var chkboxes = $('input[type=checkbox]:checked');
        for(var i = 0; i < chkboxes.length; i++){
            $(chkboxes[i]).prop('checked', false);
        }
        //end of my random "on change" bahaviour}
    });

    $('input[type=checkbox]').on('change', function(e){
        //this was deselected no need to check?
        if(!$(this).prop('checked')){
            return false;
        }

        //checked count exceeded #count value
        if($('input[type=checkbox]:checked').length > $('#count').val()){
            $(this).prop('checked', false);
            alert('Count of checked checkboxes >= #count');
            return false;
        }

        //if checked check boxes count = #count, validate all divs
        if($('input[type=checkbox]:checked').length == $('#count').val()){
            validateDivs();
        }        

        var checksLeft = parseInt($('#count').val()) - $('input[type=checkbox]:checked').length;
        var parent     = $($(this).parent()[0]);
        var parentSub  = parent.find('input[type=checkbox]:checked').length; //count of checked checkboxes in current parent

        if(parseInt(parent.attr('data-min')) - parentSub > checksLeft){
            $(this).prop('checked', false);
            alert('Not enought checks left');
            return false;
        }
    });
});

function validateDivs(){
    var chkboxes = $('.checkbox');
    for(var i = 0; i < chkboxes.length; i++){
        var chks = $(chkboxes[i]).find('input[type=checkbox]:checked');
        if(chks.length < $(chkboxes[i]).attr('data-min')){
            chks.each(function(index, checkbox){
                $(checkbox).prop('checked', false);
            })
        }
    }
}

答案 2 :(得分:0)

我没有回答你的similar问题吗?无论如何,请查看此fiddle示例。

$('input[type=checkbox]').on('click', function(event){
    if($('div.checkbox input[type=checkbox]:checked').length > $('#count').val())
    {
        event.preventDefault();
    }
});