HTML DOM title 屬性
Document 對(duì)象定義和用法
title 屬性可返回當(dāng)前文檔的標(biāo)題( HTML title 元素中的文本)。
語(yǔ)法
document.title
瀏覽器支持
所有主要瀏覽器都支持 title 屬性
實(shí)例
實(shí)例
返回當(dāng)前文檔的標(biāo)題:
<html>
<head>
<title>My title</title>
</head>
<body>
The title of the document is:
<script>
document.write(document.title);
</script>
</body>
</html>
<head>
<title>My title</title>
</head>
<body>
The title of the document is:
<script>
document.write(document.title);
</script>
</body>
</html>
嘗試一下 ?
Document 對(duì)象
更多建議: