JavaScript 参考手册
HTML DOM classList 属性
为 <div> 元素移除多个类
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> .mystyle { width: 500px; height: 50px; padding: 15px; border: 1px solid black; } .anotherClass { background-color: coral; color: white; } .thirdClass { text-transform: uppercase; text-align: center; font-size: 25px; } </style> </head> <body> <p>点击按钮移除多个 DIV 元素中的 类。</p> <button onclick="myFunction()">点我</button> <p><strong>注意:</strong> Internet Explorer 9 及更早 IE 版本浏览器不支持 classList 属性。</p> <div id="myDIV" class="mystyle anotherClass thirdClass"> 我是一个 DIV 元素。 </div> <script> function myFunction() { document.getElementById("myDIV").classList.remove("mystyle", "anotherClass", "thirdClass"); } </script> </body> </html>
运行结果:
点击运行 »