http-equiv 屬性http-equiv="Content-Type"

南城夏季發表於2018-04-13

http-equiv 屬性提供了 content 屬性的資訊/值的 HTTP 頭。

http-equiv 屬性可用於模擬一個 HTTP 響應頭。


描述
content-type規定文件的字元編碼。

例項:

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

default-style規定要使用的預定義的樣式表。

例項:

<meta http-equiv="default-style" content="the document's preferred stylesheet">

註釋:上面 content 屬性的值必須匹配同一文件中的一個 link 元素上的 title 屬性的值,或者必須匹配同一文件中的一個 style 元素上的 title 屬性的值。

refresh定義文件自動重新整理的時間間隔。

例項:

<meta http-equiv="refresh" content="300">

註釋:值 "refresh" 應該慎重使用,因為它會使得頁面不受使用者控制。在 W3C's Web 內容可訪問性指南 中使用 "refresh" 會到導致失敗。


相關文章