jQuery Validation at least one checkbox is selected

后端 未结 5 1743
鱼传尺愫
鱼传尺愫 2021-01-15 02:05

I have the following piece of html code for form checkboxes

5条回答
  •  [愿得一人]
    2021-01-15 02:46

    Try with this

    $("#YourbuttonId").click(function(){
        if($('input[type=checkbox]:checked').length == 0)
        {
            alert('Please select atleast one checkbox');
        }
    });
    

    By Plugin

    HTML

    
    
    
    

    Script

    rules:{
         "spamm[]": { 
          required: true, 
          minlength: 1 
          }
       }
    

提交回复
热议问题