运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> .myStyle { background-color: coral; padding: 16px; } .anotherClass { text-align: center; font-size: 25px; } .thirdClass { text-transform: uppercase; } </style> <body> <h1>The DOMToken Object</h1> <h2>The remove() Method</h2> <button onclick="myFunction()">Remove</button> <p>Click "Remove" to remove multiple classes from myDIV.</p> <div id="myDIV" class="myStyle anotherClass thirdClass"> <p>I am myDIV.</p> </div> <script> function myFunction() { document.getElementById("myDIV").classList.remove("myStyle", "anotherClass", "thirdClass"); } </script> </body> </html>