x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
</head>
7
<body id="myid" title="mytitle">
8
9
<script>
10
var x = document.getElementsByTagName('body')[0];
11
document.write("Body 标题: " + x.title);
12
document.write("<br>");
13
document.write("另一种方法: ");
14
document.write(document.getElementById('myid').title);
15
</script>
16
17
</body>
18
</html>