<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>getElementById() 方法</h2>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = "Hello World";
</script>
</body>
</html>