“JQuery Verifique se toda a caixa de seleção não está verificada” Respostas de código

JQuery Verifique se a caixa de seleção não foi verificada

if (!$("#checkboxID").is(":checked")) {
    // do something if the checkbox is NOT checked
}
C0W

jQuery validar toda a caixa de seleção verificada

<form id="form1" action="/controller/action" method="post">
   <input type="checkbox" name="box1" class="cBox" />
   <input type="checkbox" name="box2" class="cBox" />
   <input type="checkbox" name="box3" class="cBox" />
  <input type="submit" value="Submit" />
</form>
<script>
$('#form1').submit(function() {
   if ($('input:checkbox', this).length == $('input:checked', this).length ) {
            // everything's fine...
   } else {
            alert('Please tick all checkboxes!');
            return false;
   }
});
</script>
Ivan The Terrible

JQuery Verifique se toda a caixa de seleção não está verificada

 $('#checkAll').click(function () {    
     $('input:checkbox').prop('checked', this.checked);    
 });
Successful Stag

Respostas semelhantes a “JQuery Verifique se toda a caixa de seleção não está verificada”

Perguntas semelhantes a “JQuery Verifique se toda a caixa de seleção não está verificada”

Procure respostas de código populares por idioma

Procurar outros idiomas de código