“Abfragetektor hat Clas” Code-Antworten

Abfragetektor hat Clas

if (document.body.classList.contains('thatClass')) {
    // do some stuff
}
Comfortable Capuchin

Abfragetektor hat Clas

document.body.classList.add('thisClass');
// $('body').addClass('thisClass');

document.body.classList.remove('thatClass');
// $('body').removeClass('thatClass');

document.body.classList.toggle('anotherClass');
// $('body').toggleClass('anotherClass');
Comfortable Capuchin

Ähnliche Antworten wie “Abfragetektor hat Clas”

Fragen ähnlich wie “Abfragetektor hat Clas”

Weitere verwandte Antworten zu “Abfragetektor hat Clas” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen