“Nicht deaktiviert jQuery” Code-Antworten

JQuery -Option nicht deaktiviert

const opt = $('#select option:not(:disabled)'); // array with all options not disabled
const first = $($('#select option:not(:disabled)')[0]); // first option not disabled
Chris PA

Nicht deaktiviert jQuery

$(document).ready(function(){
  $(':checkbox.selectall').on('click', function(){
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').prop("checked", $(this).prop("checked"));
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').trigger("change");
  });
});
Embarrassed Eagle

Ähnliche Antworten wie “Nicht deaktiviert jQuery”

Fragen ähnlich wie “Nicht deaktiviert jQuery”

Weitere verwandte Antworten zu “Nicht deaktiviert jQuery” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen