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