“Zdobądź i zmień klasę elementu” Kod odpowiedzi

JavaScript Zmień klasę elementu

document.getElementById("myElementID").classList.add('myClassName');
document.getElementById("myElementID").classList.remove('myClassName');
Grepper

Zdobądź i zmień klasę elementu

const mssg = document.querySelector('p');//get the class of the p tag
console.log(mssg.getAttribute('class'));//the class is currently 'error'
mssg.setAttribute('class', 'success');//now the p tag's class is changed to 'success'
console.log(mssg.getAttribute('class'));//the new class of the p tag is 'success'
Meandering Meerkat

Odpowiedzi podobne do “Zdobądź i zmień klasę elementu”

Pytania podobne do “Zdobądź i zmień klasę elementu”

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

Przeglądaj inne języki kodu