x
 
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建 HR 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  var x = document.createElement("HR");
  document.body.appendChild(x);
}
</script>
</body>
</html>