我有一个关于使用微数据但现在在网页上显示任何标记实体的问题。
例如,我有一个段落谈论两个人,但下面的HTML代码将显示除句子之外的网页上的两个名称。相反,我想知道是否有一种方法只显示句子,但也让两个人用Microdata标记。谢谢!
<p>This is a paragraph about two CEOs of Apple Inc.</p>
<div itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Steve Jobs</span>
<span itemprop="affiliation">Apple Inc.</span>
</div>
<div itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Tim Cook</span>
<span itemprop="affiliation">Apple Inc.</span>
</div>
答案 0 :(得分:3)
您可以使用元标记。
例如:
<p>This is a passage about two CEOs of Apple Inc.
<span itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Steve Jobs" />
<meta itemprop="affiliation" content="Apple Inc." />
</span>
<span itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Tim Cook" />
<meta itemprop="affiliation" content="Apple Inc." />
</span>
</p>