当我从w3c验证器传递
html5验证器到我的网站时,我有一个问题.错误是下一个:
Bad value Content-Script-Type for attribute http-equiv on element Meta <Meta http-equiv="Content-Script-Type" content="text/javascript" > Bad value expires for attribute http-equiv on element Meta <Meta http-equiv="expires" content="Wed,26 Feb 1997 08:21:57 GMT" > Bad value pragma for attribute http-equiv on element Meta <Meta http-equiv="pragma" content="no-cache" > Bad value Cache-Control for attribute http-equiv on element Meta. <Meta http-equiv="Cache-Control" content="no-cache" >
元标签通过html5验证器的正确值是多少?
解决方法
对于HTML5,您可以在标题中使用缓存清单文件.
这是一个如何使用的例子:
http://www.w3.org/TR/html5/browsers.html#manifests
这是一个如何使用的例子:
http://www.w3.org/TR/html5/browsers.html#manifests
此外,您强制不使用缓存:
<Meta http-equiv="expires" content="0">
这是一个关于如何使用缓存清单文件的好教程:
http://www.html5rocks.com/en/tutorials/appcache/beginner/