https://developer.mozilla.org/zh-CN/docs/Web/API/Document/write
不建议使用 document.write() 方法。
document.write() 方法将文本字符串写入由 document.open() 打开的文档流。
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
document.write('我是标签')
document.write('<h1>我是标题</h1>')
</script>
</body>
</html>
展示效果: