2013-07-10 54 views
2

我有一個關於使用Microdata的問題,但現在顯示網頁上的任何標記實體。Microdata沒有在網頁上顯示標記實體

例如,我有一段討論兩個人,但下面的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> 

回答

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>