Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> .oldClass { width: 150px; height: 50px; background-color: #1c87c9; color: #e6ebef; font-size: 25px; padding: 5px; } .newClass { width: 300px; height: 100px; background-color: #8ebf42; text-align: center; font-size: 25px; color: #eee; margin-bottom: 10px; } </style> </head> <body> <p>Klicken Sie auf den Button, um die Klasse zu ersetzen.</p> <button onclick="myFunction()">Klicken</button> <p><strong>Note:</strong>Die Eigenschaft classList wird in Internet Explorer 9 und früheren Versionen nicht unterstützt.</p> <div id="myDiv" class="oldClass"> Ich bin ein Div-Element. </div> <script> function myFunction() { var x = document.getElementById("myDiv"); x.classList.replace("oldClass", "newClass"); } </script> </body> </html>