HTML <meta> 标签http-equiv属性

  • <meta>标签http-equiv属性定义和用法

    http-equiv属性为content属性的信息/值提供HTTP标头。
    http-equiv属性可用于模拟HTTP响应头。

  • <meta>标签http-equiv属性浏览器支持

    Edge/IE Chrome FireFox Safari Opera
    支持 支持 支持 支持 支持
  • HTML4.01和HTML5之间的差异

    使用http-equiv不再是指定HTML文档字符集的唯一方法:

    • HTML4.01:<meta http-equiv=“content-type” content =“text/html; charset=UTF-8”>
    • HTML5: <meta charset=“UTF-8”>

  • <meta>标签http-equiv属性语法

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

  • <meta>标签http-equiv属性实例

    <head>
                                      <meta http-equiv="refresh" content="30">
                                    </head>
    尝试一下
  • <meta>标签http-equiv属性值

    属性值 描述
    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的Web内容可访问性指南失败。