1

验证我的网页(html 5)时出现此错误"Bad value Cache-Control for attribute http-equiv on element meta."

这是我在页面源代码上的 HTML 代码:

<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
<meta name="description" content="Lorem ipsum dolor site amet"/>
<meta name="keywords" content="Lorem ipsum dolor site amet"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta name="robots" content="index, follow" />

如何解决这个问题?

4

1 回答 1

2

http-equivCache-ControlHTML5 中不允许值。

您只能使用HTML5规范中列出的值以及在以及在WHATWG wiki 页面“PragmaExtensions”中注册的值。

如果你需要它并认为它有用,你可以尝试注册它

于 2013-06-24T18:18:33.317 回答