HTML DOM title 属性
JavaScript基础 2022-06-08 11:24:31小码哥的IT人生shichen
HTML DOM title 属性
定义和用法
title 属性可返回当前文档的标题( HTML title 元素中的文本)。
语法
document.title
实例
<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>
TIY
完整实例【返回当前文档的标题】:
<html>
<head>
<title>My title</title>
</head>
<body>
该文档的标题是:
<script type="text/javascript">
document.write(document.title)
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html