“Przełącz klasę JavaScript and JQuery” Kod odpowiedzi

przełącz jQuery Usuń inne

$(".nav-link").click(function () {
  // If the clicked element has the active class, remove the active class from EVERY .nav-link>.state element
  if ($(this).hasClass("active")) {
    $(".nav-link").removeClass("active");
  }
  // Else, the element doesn't have the active class, so we remove it from every element before applying it to the element that was clicked
  else {
    $(".nav-link").removeClass("active");
    $(this).addClass("active");
  }
});
DevPedrada

Przełącz klasę JavaScript and JQuery

$('.click-class').click(function() {
    $('.class-toggle').toggle();
    $('.class-toggle').toggleClass('add-class');
})
Ambitious Coder

Odpowiedzi podobne do “Przełącz klasę JavaScript and JQuery”

Pytania podobne do “Przełącz klasę JavaScript and JQuery”

Więcej pokrewnych odpowiedzi na “Przełącz klasę JavaScript and JQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu