document.body 是 body节点
document.documentElement 是 html 根节点
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div class="container">
</div>
<script>
alert(document.body.outerHTML);
alert(document.documentElement.outerHTML);
</script>
</body>
</html>