“Hapus atau tambahkan kelas jQuery” Kode Jawaban

JQuery hapus dan tambahkan kelas

$( "#foo" ).toggleClass( 'className', addOrRemoveOptional );

//OR
if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}
Matteoweb

Toggle jQuery hapus orang lain

$(".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

JQuery menghapus kelas

$("#div1").on("click", function () {
    if ($(this).hasClass("active")) {
      setTimeout(function () {
        $("#div1").removeClass("active");
      }, 10);
    }
  });
Nitria

Tambahkan dan hapus kelas di jQuery


$('#menu li a').on('click', function(){
    $('#menu li a.current').removeClass('current');
    $(this).addClass('current');
});

Puzzled Panda

Hapus atau tambahkan kelas jQuery

$('.edit-item').click(function(){
 	$('#edit-form').addClass('hide');
  $('#details-content-wrapper').removeClass('hide')
})
Super Seal

Jawaban yang mirip dengan “Hapus atau tambahkan kelas jQuery”

Pertanyaan yang mirip dengan “Hapus atau tambahkan kelas jQuery”

Lebih banyak jawaban terkait untuk “Hapus atau tambahkan kelas jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya