Learn how to remove a class name from an element with JavaScript.
In this example, we will use a button to remove the "mystyle" class from the <div> element with id="myDIV":
<button onclick="myFunction()">Try it</button>
<div id="myDIV" class="mystyle">
This is a DIV element.
</div>
Style the specified class name:
.mystyle {
width: 100%;
padding: 25px;
background-color: coral;
color: white;
font-size: 25px;
}
Get the <div> element with id="myDIV" and remove the "mystyle" class from it:
function myFunction() {
var element = document.getElementById("myDIV");
element.classList.remove("mystyle");
}
Try it Yourself »
Tip: Also see How To Toggle A Class.
Tip: Also see How To Add A Class.
Tip: Learn more about the classList property in our JavaScript Reference.
Tip: Learn more about the className property in our JavaScript Reference.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!