<html>
<body>
<h3>如何访问 BR 元素的演示</h3>
<div>这是一个带有一些 <br> 换行符的 div <br id="myBR"> 元素。</div>
<p>单击按钮将文档中的第一个 BR 元素设置为 display="none"。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myBR");
x.style.display = "none";
}
</script>
</body>
</html>