Limit Checkbox amount

前端 未结 6 840
孤独总比滥情好
孤独总比滥情好 2020-11-29 05:35

I have 20 Checkboxes. I need to disable 16 Checkboxes, if 4 checkboxes are selected.

I tryed this begann with this jquery code

    $(\"input[type=ch         


        
6条回答
  •  南方客
    南方客 (楼主)
    2020-11-29 06:06

    $("input[type=checkbox][name=cate]").click(function() {
    
        var bol = $("input[type=checkbox][name=cate]:checked").length >= 4;     
        $("input[type=checkbox][name=cate]").not(":checked").attr("disabled",bol);
    
    });
    

    demo

提交回复
热议问题