javascript删除类的方法:1、通过“remove("mystyle")”方法为dc6dce4a544fdca2df29d5ac0ea9906b元素移除一个类;2、通过“remove("mystyle", "anotherClass", "thirdClass");”方法移除多个类。
本文操作环境:windows7系统、javascript1.8.5版,DELL G3电脑
javascript怎么删除类?
原生JS添加类,删除类
为 dc6dce4a544fdca2df29d5ac0ea9906b 元素添加 class:
document.getElementById("myDIV").classList.add("mystyle");
为 dc6dce4a544fdca2df29d5ac0ea9906b 元素添加多个类:
document.getElementById("myDIV").classList.add("mystyle", "anotherClass", "thirdClass");
为 dc6dce4a544fdca2df29d5ac0ea9906b 元素移除一个类:
document.getElementById("myDIV").classList.remove("mystyle");
为 dc6dce4a544fdca2df29d5ac0ea9906b 元素移除多个类:
document.getElementById("myDIV").classList.remove("mystyle", "anotherClass", "thirdClass");
检查是否含有某个CSS类
myDiv.classList.contains('myCssClass'); //return true or false
推荐学习:《javascript高级教程》
以上是javascript怎么删除类的详细内容。更多信息请关注PHP中文网其他相关文章!