写在head中,且只许出现一次。
内容类型为文本形式。
interface HTMLTitleElement : HTMLElement {
attribute DOMString text;
};
title的标签中的内容用来表达文档的标题或名称。
在其他环境中也用title标签分别不同的html文档,例如书签中等。
调用或设置title的方法
interface HTMLTitleElement : HTMLElement {
attribute DOMString text;
};
title的标签中的内容用来表达文档的标题或名称。
在其他环境中也用title标签分别不同的html文档,例如书签中等。
调用或设置title的方法
代码: 全选 运行
title . text [ = value ]
调用title的方法:document.title
所以上例中的代码实际应用中可以写成
……
<body>
<script language="javascript">
document.title = 'htmlv.cn';
</script>
</body>
……