“Seleccione toda la casilla de verificación jQuery” Código de respuesta

casilla de verificación Haga clic en jQuery Seleccione todo

$("#checkAll").click(function(){
    $('input:checkbox').not(this).prop('checked', this.checked);
});
Ill Iguana

jQuery obtenga todas las casillas de verificación marcadas

var values=[];
$('input[name="your-checkbox-name[]"]:checked').each(function () {
  values[values.length] = (this.checked ? $(this).val() : "");
});
Healthy Heron

Seleccione todas las casillas de verificación jQuery

$('input:checkbox').prop('checked', true);
Spyder

Encuentra toda la casilla de verificación dentro de Div jQuery

$('#selectChb').click(function(){ 
     $(':checkbox').prop("checked", true);
});
Distinct Dormouse

Seleccione toda la casilla de verificación jQuery

$('#select_all').change(function() {
  var checkboxes = $(this).closest('form').find(':checkbox');
  checkboxes.prop('checked', $(this).is(':checked'));
});
Muddy Macaw

Seleccione toda la casilla de verificación jQuery

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form>
  <table>
    <tr>
      <td><input type="checkbox" id="select_all" /></td>
    </tr>
    <tr>
      <td><input type="checkbox" name="select[]" /></td>
    </tr>
    <tr>
      <td><input type="checkbox" name="select[]" /></td>
    </tr>
    <tr>
      <td><input type="checkbox" name="select[]" /></td>
    </tr>
  </table>
</form>
Muddy Macaw

Respuestas similares a “Seleccione toda la casilla de verificación jQuery”

Preguntas similares a “Seleccione toda la casilla de verificación jQuery”

Más respuestas relacionadas con “Seleccione toda la casilla de verificación jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código