http-equiv屬性為 content 屬性的信息/值提供HTTP標(biāo)頭,http-equiv屬性可用于模擬HTTP響應(yīng)標(biāo)頭。
每間隔1分鐘刷新一次網(wǎng)頁:
<!DOCTYPE html> <html> <head> <title>HTML:<meta> http-equiv 屬性 - 菜鳥教程(cainiaoplus.com)</title> <meta http-equiv="refresh" content="60"> </head> <body> <h1>My Website</h1> <p>Some text...</p> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 http-equiv 屬性。
http-equiv屬性為 content 屬性的信息/值提供HTTP標(biāo)頭。
http-equiv屬性可用于模擬HTTP響應(yīng)標(biāo)頭。
使用 http-equiv 已經(jīng)不是規(guī)定 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 | 規(guī)定文檔的字符編碼。 示例: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
default-style | 規(guī)定要使用的預(yù)定義的樣式表。 示例: <meta http-equiv="default-style" content="the document's preferred stylesheet"> 注釋:上面 content 屬性的值必須匹配同一文檔中的一個 link 元素上的 title 屬性的值,或者必須匹配同一文檔中的一個 style 元素上的 title 屬性的值。 |
refresh | 定義文檔自動刷新的時間間隔,單位為秒。 示例: <meta http-equiv="refresh" content="300"> 注釋:值 "refresh" 應(yīng)該慎重使用,因?yàn)樗鼤沟庙撁娌皇苡脩艨刂?。?a target="_blank" >W3C's Web 內(nèi)容可訪問性指南 中使用 "refresh" 會到導(dǎo)致失敗。 |