<html>
<style>
.myStyle {
background-color: coral;
padding: 16px;
}
.newStyle {
background-color: lightblue;
text-align: center;
font-size: 25px;
padding: 16px;
}
</style>
<body>
<h1>Element 对象</h1>
<h2>className 属性</h2>
<button onclick="myFunction()">更改</button>
<p>点击“更改”可将 "myDIV" 的 class 属性值改为 "newStyle"。</p>
<div id="myDIV" class="myStyle">
<p>我是 myDIV。</p>
</div>
<script>
function myFunction() {
document.getElementById("myDIV").className = "newStyle";
}
</script>
</body>
</html>