使用复选框和多个选择器更改功能

Change function with checkboxes and multiple selectors

我正在尝试限制同时选中的两种不同类型的复选框的数量。我想创建一个特定的复选框组合,然后发出警报,三个黄色的和两个红色的。我的问题是警报只在其中一个语句上触发,而不是在两个语句上触发。 我只能检查两个红色,但可以检查任意多个黄色。

$('input[name=redChoice], input[name=yellowChoice]').change(function() {

    var cntRed = $('input[name=redChoice]:checked').length;
    var cntYellow = $('input[name=yellowChoice]:checked').length;

    var maxRedAllowed2 = 2;
    var maxYellowAllowed3 = 3;

    if (cntRed > maxRedAllowed2 && cntYellow > maxYellowAllowed3) {
        $(this).prop('checked', false);
        alert("Du har valt 3 stycken gula och 2 stycken röda."); 
    }
});

试试这个。我相信这就是您要找的。

您希望能够单击不超过 2 个红色和 3 个黄色,同时您希望在单击 2 个红色和 3 个黄色时显示警报

$('input[name=redChoice], input[name=yellowChoice]').change(function() {

    var cntRed = $('input[name=redChoice]:checked').length;
    var cntYellow = $('input[name=yellowChoice]:checked').length;

    var maxRedAllowed2 = 2;
    var maxYellowAllowed3 = 3;

    
    
     if (cntRed == maxRedAllowed2 && cntYellow == maxYellowAllowed3) {
        //$(this).prop('checked', false);
        alert("Du har valt 3 stycken gula och 2 stycken röda."); 
    }
    else if (cntRed > maxRedAllowed2){
       $(this).prop('checked', false);
    }
    else if (cntYellow > maxYellowAllowed3){
       $(this).prop('checked', false);
    }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
red<input type="checkbox" name="redChoice"/>
red<input type="checkbox" name="redChoice"/>
red<input type="checkbox" name="redChoice"/>
red<input type="checkbox" name="redChoice"/>
yellow<input type="checkbox" name="yellowChoice"/>
yellow<input type="checkbox" name="yellowChoice"/>
yellow<input type="checkbox" name="yellowChoice"/>
yellow<input type="checkbox" name="yellowChoice"/>
yellow<input type="checkbox" name="yellowChoice"/>