<html>
<head>
<style>
#myDIV {
width: 500px;
height: 500px;
background-color: lightblue;
}
</style>
</head>
<body>
<p>点击“试一试”按钮,将 DIV 元素的 display 属性设置为“none”:</p>
<button onclick="myFunction()">试一试</button>
<div id="myDIV">
This is my DIV element.
</div>
<p><b>注释:</b>当 display 属性设置为 “none” 时,元素不会占用任何空间。</p>
<script>
function myFunction() {
document.getElementById("myDIV").style.display = "none";
}
</script>
</body>
</html>