243

如何使用 JavaScript 获取 HTML 页面的标题?

4

4 回答 4

392

使用document.title

console.log(document.title)
<title>Title test</title>

MDN 网络文档

于 2009-06-29T07:53:52.957 回答
18

输入网址栏,然后点击回车:

javascript:alert(document.title);

您可以根据所使用的网站和 Web 浏览器从警报中选择和复制文本。

于 2011-08-04T22:50:26.800 回答
10

可以使用getElementsByTagName

var x = document.getElementsByTagName("title")[0];

alert(x.innerHTML)

// or

alert(x.textContent)

// or

document.querySelector('title')

Paul建议的编辑

于 2017-04-25T09:04:33.327 回答
0

this makes the h1 element the page title. this shows how capable can be javascript for small and big projects.

document.getElementById("text").innerText = document.title;
<title>hello world</title>
<h1 id="text"></h1>

于 2022-01-20T17:47:43.803 回答