335 用途document.title: console.log(document.title) <title>Title test</title> 运行代码段隐藏结果展开摘要 MDN网络文档 — ZA。 source 3 HTML5版本;)<script>if (typeof(console.log) === "function") {alert(document.title);}</script> — OregonTrail 2013年 39 @OregonTrail武汉理工大学?如果console.log,然后alert呢? — Petah 3 <script>如果问题与JavaScript有关,在答案中包含标签有什么意义?另外,type完全不需要属性,并且IMHO console.log()在调试方面比alert()。 — 米哈尔Perłakowski
6 可以使用 getElementsByTagName var x = document.getElementsByTagName("title")[0]; alert(x.innerHTML) — 超级新星 source 3 如果您解析HTML文档 — Matt M,
<script>if (typeof(console.log) === "function") {alert(document.title);}</script>