取出list中属性_classList属性的知识点整理最近频繁的使用到 classList 这个HTML5属性,所以也把他总结一下。 classLIst属性返回元素的类名,作为DOMTokenList对象 该属性用于在元素中添加、移出、切换css类 语法:elem.classList 方法: add( String[,String]):添加指定的类值。如果这些类已经存在于元素的属性中,那么他们将被忽略 remove(String[,String]):删除指定的类值 item(Number):按集合中的索引返回类值 toggle(String[,force]): 当只有一个参数的时,切换clas...