Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理 eComm 解决方案的产品页面,并且我是第一次使用 Schema.org。我有一个产品name,里面是brandand model。这可以接受吗?
name
brand
model
<h2 itemprop="name"> <span itemprop="brand">Brand Name</span> <span itemprop="model">######</span> </h2>
查找属性值的算法定义(在最后一步中,适用于您的示例):
该值是元素的textContent.
textContent
(即元素及其子元素的文本内容)
所以根据这个,值name应该是“品牌名称######”。
查找项目属性的算法包含以下步骤:
如果current没有属性,则:将currentitemscope的所有子元素添加到pending。
itemscope
因此,包含元素的子元素itemprop也会被检查itemprop属性。
itemprop
我在微数据规范中看不到任何明确允许这样做的地方,但看起来谷歌解析器接受了它。