简单教程
提交运行
代码编辑器:
<body id="myid" title="mytitle"> <script> var x=document.getElementsByTagName('body')[0]; document.write("Body 标题: " + x.title); document.write("<br>"); document.write("另一种方法: "); document.write(document.getElementById('myid').title); </script>
运行结果: