“.classlist” Ответ

Список классов CSS

var myElement = document.getElementById("myElementID");
myElement.classList.add("style1 style2");
myElement.classList.remove("style1 style2");
Friendly Hawk

.classlist

// .classList method returns an array of the classes attached to the element it is called with.
document.getElementById("myDIV").classList
// It returns
// [ 'className1', 'className2', ... ]
subodhk

Смотреть популярные ответы по языку

Смотреть другие языки программирования