📅  最后修改于: 2022-03-11 15:03:08.885000             🧑  作者: Mango
function changeCSS(select, cssArray){
//function that Removes ClassList
//then adds back that that DOM element
// this only works because elem is stored in Memory
var myArray = [];
var elem = document.getElementsByClassName(select);
for(var i=0; i{
console.log(myArray);
myArray[index].removeAttribute('class');
myArray[index].classList.add(select);
});
for(var ii=0; ii{
myArray[ii].classList.add(item);
});
}
}