<html>
<style>
.mystyle {
background-color: coral;
padding: 16px;
}
</style>
<body>
<h1>Element 对象</h1>
<h2>className 属性</h2>
<div id="myDIV">
<p>我是 myDIV。</p>
</div>
<p>单击按钮可为 myDIV 设置一个类:</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myDIV").className = "mystyle";
}
</script>
</body>
</html>