`

W3C验证 html meta Bad value Pragma for attribute http-equiv on element meta

    博客分类:
  • html
阅读更多
  1. Error Line 7, Column 45Bad value Pragma for attribute http-equiv on element meta.
    <meta http-equiv="Pragma" content="no-cache">

  2. Error Line 8, Column 52Bad value Cache-Control for attribute http-equiv on element meta.
    <meta http-equiv="Cache-Control" content="no-cache">

  3. Error Line 9, Column 39Bad value Expires for attribute http-equiv on element meta.
    <meta http-equiv="Expires" content="0">
    
    



 

在线验证地址:http://validator.w3.org/

 

验证网页:http://each.sinaapp.com/game/

 

原meta标签为:

<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">

 

修改后标签为(兼容多浏览器含IE):

<meta http-equiv="cache-control"content="max-age=0"/>
<meta http-equiv="cache-control"content="no-cache"/>
<meta http-equiv="expires"content="0"/>
<meta http-equiv="expires"content="Tue, 01 Jan 1980 1:00:00 GMT"/>
<meta http-equiv="pragma"content="no-cache"/>
分享到:
评论

相关推荐

    http-equiv 用法大全 .doc

    HTTP-EQUIV 是HTML Meta标签中的一个属性,它模拟了HTTP头部协议,向浏览器提供关于页面的重要信息,从而帮助浏览器正确处理和显示网页内容。以下是一些常见的HTTP-EQUIV类型及其用法: 1. **Content-Type 和 ...

    LuBei-Summary-HTML_meta_http-equiv.rar_The Mass

    标题 "LuBei-Summary-HTML_meta_http-equiv.rar_The Mass" 暗示了这个压缩包中的内容可能与HTML编程中的`&lt;meta&gt;`标签,特别是`http-equiv`属性相关。`http-equiv`是一个特殊的指令,它允许网页模拟HTTP头部信息,对...

    页面的缓存与不缓存设置及html页面中meta的作用

    例如,`meta`标签的`http-equiv`属性可以设置`Pragma`和`Cache-Control`的等效值: ```html &lt;meta http-equiv="Pragma" content="no-cache"&gt; &lt;meta http-equiv="Cache-Control" content="no-cache, no-store, must-...

    JSP标签 <meta>的作用

    ### JSP标签 `&lt;meta&gt;` 的作用详解 在探讨 `&lt;meta&gt;` 标签的功能与应用之前,我们先简单回顾一下 `&lt;meta&gt;` 标签的基本概念。`&lt;meta&gt;` 标签是 HTML 中的一个元数据(metadata)标签,它用于提供关于 HTML 文档的信息,...

    网页HTML代码中Meta标签详解.pdf

    例如:&lt;Meta http-equiv="Pragma" Content="No-cach"&gt; 网页不保存在缓存中,每次访问都刷新页面。这样设定,访问者将无法脱机浏览。 5. Set-Cookie Set-Cookie用于浏览器访问某个页面时会将它存在缓存中,下次...

    META 经典 汇总

    - **用途**:允许页面设置或修改Cookie值,例如`&lt;meta http-equiv="Set-Cookie" content="key=value; expires=date; path=path"&gt;`。 6. **Window-target** - **用途**:控制页面在浏览器窗口中的打开方式,防止...

    Meta标签详解

    ### Meta标签详解 #### 一、Meta标签简介与作用 Meta标签是HTML语言中的一个辅助性标签,位于HTML文档头部的`&lt;HEAD&gt;`区域,并在`&lt;TITLE&gt;`标签之前。虽然用户在浏览网页时无法直接看到这些信息,但对于网页的SEO...

    HTML中meta详解

    - `Pragma`: 控制缓存策略,`&lt;meta http-equiv="Pragma" content="no-cache"&gt;`禁止从浏览器缓存中加载页面。 - `Set-Cookie`: 设置cookie,`&lt;meta http-equiv="Set-Cookie" content="cookie_name=value; expires=...

    HTML中小meta的大作用.txt

    - 示例:`&lt;meta http-equiv="Set-Cookie" content="key=value; expires=Mon, 12 May 2001 00:20:00 GMT; path=/"&gt;` #### 其他属性 除了上述属性之外,还有一些较少见但仍然有用的属性,例如: - **Pics-Label**...

    html语言meta标签解析及SEO优化

    用法:&lt;Meta http-equiv=”Pragma” Content=”No-cach”&gt; 注意:网页不保存在缓存中,每次访问都刷新页。 NAME NAME 是 Meta 标签的另一个部分,它提供了页面的描述信息,包括标题、作者、关键字等。 常用的 ...

    DBDAIMAYUAN

    DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"&gt; &lt;html&gt; &lt;head&gt; &lt;base href="&lt;%=basePath%&gt;"&gt; &lt;title&gt;管理首页&lt;/title&gt; &lt;meta ...

    jsp学习项目

    &lt;meta http-equiv="pragma" content="no-cache"&gt; &lt;meta http-equiv="cache-control" content="no-cache"&gt; &lt;meta http-equiv="expires" content="0"&gt; &lt;meta http-equiv="keywords" content="keyword1,keyword...

    meta标签中的

    &lt;meta http-equiv="Set-Cookie" content="cookievalue=xxx; expires=Friday, 12-Jan-2001 18:18:18 GMT; path=/"&gt; ``` - **Window-target (窗口定位)**:指定页面显示的目标窗口。 ```html &lt;meta ...

    html meta标签使用方法

    - 示例:`&lt;meta http-equiv="Set-Cookie" content="cookievalue=xxx; expires=Friday, 12-Jan-2001 18:18:18 GMT; path=/"&gt;` - 注意:日期格式必须使用GMT格式。 - **Window-target(窗口目标)** - 用途:强制...

    springword

    &lt;meta http-equiv="pragma" content="no-cache"&gt; &lt;meta http-equiv="cache-control" content="no-cache"&gt; &lt;meta http-equiv="expires" content="0"&gt; &lt;meta http-equiv="keywords" content="keyword1,keyword...

    META标签使用详解

    - `&lt;meta http-equiv="Set-Cookie" content="cookievalue=xxx; expires=Wednesday, 21-Oct-98 16:14:21 GMT; path=/"&gt;` 指定Cookie的值、过期时间和路径。 - **注意事项**:必须使用GMT格式的时间。 ##### 6. ...

    meta的用法(需要的可以看看,很受益的)

    &lt;meta http-equiv="http-equiv-value" content="string"&gt; ``` 其中,`name`属性用于指定元信息的名称,而`content`属性则包含相应的值。 二、参数解析 1. `name`项: - `Keywords`: 关键词,用于SEO,帮助搜索引擎...

Global site tag (gtag.js) - Google Analytics