微观数据与元元素
我想在我的产品页面上使用微数据
例如:
Prix: <span itemprop="price">25</span>
<meta itemprop="priceCurrency" content="EUR" />
如果我的页面上的所有产品均以欧元显示,我可以在 html head 部分 中添加此元数据吗? 会更干净!
可用性元标记也有同样的问题,我的所有产品都是新的,我想在我的 head 部分而不是在我的所有产品 div 中添加元标记...
I want to use microdata on my prodcuts page
For example:
Prix: <span itemprop="price">25</span>
<meta itemprop="priceCurrency" content="EUR" />
If all my products are in euros on my page, can i add this meta in the html head section ?
It'll be more clean !
It's the same problem with the availability meta tag, all my products are new, i would like to add the meta tag in my head section and not in all my products div ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。只需为您的
元素提供一个
id
,并确保每个itemscope
都有一个itemref
属性,其中包括其列表中的id
。Yes you can. Just give your
<meta>
element anid
, and ensure that eachitemscope
has anitemref
attribute that includes theid
in its list.如果您还没有完成大量后端处理代码,您可能需要采用 HTML5 数据属性路线。 http://ejohn.org/blog/html-5-data-attributes/
作为一个优点,这是完全有效的 HTML5。
If you don't already have a lot of backend processing code done already, you may want to go the HTML5 data attribute route. http://ejohn.org/blog/html-5-data-attributes/
As a plus, this is completely valid HTML5.