欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM title 屬性

定義和用法

title 屬性可返回當(dāng)前文檔的標(biāo)題( HTML title 元素中的文本)。

語法

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>