HTML DOM title 屬性
定義和用法
title 屬性可返回當(dāng)前文檔的標(biāo)題( HTML title 元素中的文本)。
語(yǔ)法
document.title
實(shí)例
<html>
<head>
<title>My title</title>
</head>
<body>
The title of the document is:
<script type="text/javascript">
document.write(document.title
)
</script>
</body>
</html>