相关文章推荐
淡定的匕首  ·  空轨联运产品发布 ...·  7 月前    · 
活泼的匕首  ·  地方动态·  1 年前    · 
曾深爱过的黄瓜  ·  mysql ...·  1 年前    · 
豪爽的牛肉面  ·  Android Recycleview ...·  2 年前    · 

为 <div> 元素添加多个类:

document.getElementById("myDIV").classList.add("mystyle", "anotherClass", "thirdClass");

为 <div> 元素移除一个类:

document.getElementById("myDIV").classList.remove("mystyle");

为 <div> 元素移除多个类:

document.getElementById("myDIV").classList.remove("mystyle", "anotherClass", "thirdClass");

检查是否含有某个CSS类

myDiv.classList.contains('myCssClass'); //return true or false