Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.mystyle {
  width: 500px;
  height: 50px;
}
.test {
  background-color: lightblue; 
}
.example {
  text-align: center;
  font-size: 25px;
  color: black;
  margin-bottom: 10px;
}
</style>
</head>
<body>
<p>单击该按钮以显示 div 元素的类名称。</p>
<div id="myDIV" class="mystyle test example">
我是一个 DIV 元素 with multiple classes
</div>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myDIV").className;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>