寫在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>
……