http-equiv属性为 content 属性的信息/值提供HTTP标头,http-equiv属性可用于模拟HTTP响应标头。
每间隔1分钟刷新一次网页:
<!DOCTYPE html> <html> <head> <title>HTML:<meta> http-equiv 属性 - 编程教程网(123520.net)</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标头。
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 | 规定文档的字符编码。 示例: <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" 会到导致失败。 |