HTML <meta> 标簽
每隔 30 秒重新整理一次文檔:
<head>
<meta http-equiv="refresh" content="30">
</head>
所有主流浏覽器都支援 http-equiv 屬性。
http-equiv 屬性提供了 content 屬性的資訊/值的 HTTP 頭。
http-equiv 屬性可用于模拟一個 HTTP 響應頭。
使用 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
規定文檔的字元編碼。
執行個體:
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" 會到導緻失敗。