1. 程式人生 > >HTML meta http-equiv 屬性

HTML meta http-equiv 屬性

例項

每隔 30 秒重新整理一次文件:

<head>
<meta http-equiv="refresh" content="30">
</head>

 


瀏覽器支援

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流瀏覽器都支援 http-equiv 屬性。


定義和用法

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

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


HTML 4.01 與 HTML5之間的差異

使用 http-equiv 已經不是規定 HTML 文件的字符集的唯一方式:

  • HTML 4.01: <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  • HTML5: <meta charset="UTF-8">

語法

<meta http-equiv="content-type|default-style|refresh">

屬性值

描述
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" 會到導致失敗。