我有什么方法可以将<meta />
和<time />
合并在一起吗?它们都是必要的吗?
<div itemscope itemtype="http://schema.org/Event">
<a itemprop="url" href="nba-miami-philidelphia-game3.html" itemprop="name">
Miami Heat at Philadelphia 76ers
</a>
<meta itemprop="startDate" content="2016-04-21T20:00">
<time datetime="2016-04-21T20:00"></time>
Thu, 04/21/16
8:00 p.m.
</div>
答案 0 :(得分:2)
你为什么不这样做:
<time itemprop="startDate" datetime="2016-04-21T20:00">
Thu, 04/21/16
8:00 p.m.</time>
查看basic syntax section of the spec中的日期示例。
答案 1 :(得分:0)
如果您想同时使用HTML5和Schema.org/RDFA Lite,可以执行以下操作:
<time itemprop="startDate" datetime="2016-04-21T20:00" content="2016-04-21T20:00">Thu, 04/21/16 8:00 p.m.</time>
解析ISO日期比处理文本表示更容易