📅  最后修改于: 2022-03-11 15:02:47.588000             🧑  作者: Mango
function changeCSS(select, cssArray){
//function that Removes all Class(es) from a 'queried DOM'
//then adds back to that DOM element, all the entries from the 2nd parameter Array
// 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);
});
}
}