x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>createElement() 方法</h2>
<p>创建 button 元素:</p>
<script>
const btn = document.createElement("button");
btn.innerHTML = "Hello Button";
document.body.appendChild(btn);
</script>
</body>
</html>