"Attribute itemprop not allowed on element meta at this point"
"Attribute itemprop not allowed on element meta at this point"
我从标题中得到错误,但不知道如何修复它。我有一个 link 导致一个产品。为了进一步描述这个产品,我在 a
元素中添加了 meta
元素来添加产品 ID 等内容:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<a itemscope itemtype="http://schema.org/Product">
<meta property="productID" itemprop="productID" content="12">
</a>
</body>
</html>
当我 运行 通过验证器执行此操作时,出现错误:
Attribute itemprop
not allowed on element meta
at this point.
否则我将如何定义它?
删除 property
属性并执行此操作:
<meta itemprop="productID" content="12">
property
属性是 RDFa 属性,而不是微数据属性。
我从标题中得到错误,但不知道如何修复它。我有一个 link 导致一个产品。为了进一步描述这个产品,我在 a
元素中添加了 meta
元素来添加产品 ID 等内容:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<a itemscope itemtype="http://schema.org/Product">
<meta property="productID" itemprop="productID" content="12">
</a>
</body>
</html>
当我 运行 通过验证器执行此操作时,出现错误:
Attribute
itemprop
not allowed on elementmeta
at this point.
否则我将如何定义它?
删除 property
属性并执行此操作:
<meta itemprop="productID" content="12">
property
属性是 RDFa 属性,而不是微数据属性。