我正在尝试将我的文档验证为XHTML 1.0 Transitional(W3C)。我有以下错误:
“itemscope”不是为任何属性指定的组的成员
这对应于此代码:
<body class="innerpage" itemscope itemtype="http://schema.org/Physician">
<body class="innerpage" itemscope itemtype="http://schema.org/Physician">
<!-- Facebook Conversion Code for Leads -->
<script type="text/javascript" src="js/face.js"></script>
</body>
</html>
如何解决这个问题?
谢谢!
答案 0 :(得分:5)
不幸的是,这是不可能的,因为http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd对这些属性一无所知(itemscope,itemtype)。您可以通过将that file下载到计算机并尝试在该文档中找到(Ctrl + F)单词itemscope
或itemtype
来说服自己。你将获得0结果。
所以基本上,你从这里开始有两个选择:
如果您想继续使用itemscope
和itemtype
属性
必须切换到HTML5 doctype,然后您的文档看起来像
如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body class="innerpage" itemscope itemtype="http://schema.org/Physician">
<p>Content</p>
</body>
</html>
这将导致:
This document was successfully checked as HTML5!
如果您需要保留XHTML文档类型定义,那么您必须从微数据切换到RDF,您的文档将如下所示:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body class="innerpage" vocab="http://schema.org/" typeof="Physician">
<p>Content</p>
</body>
</html>
这将导致:
This document was successfully checked as -//W3C//DTD XHTML+RDFa 1.1//EN!