Link 没有嵌套的相同微数据域
Link same Microdata domain without nesting
我想 link 另一个 div 中的相同微数据域,这是我拥有的:
<div id="colleau" itemscope itemtype="http://schema.org/Organization">
<!-- Here i got name, foundingDate, founders, etc... -->
</div>
但我在另一个 div 中有 phone 号码和地址,但不是 linking:
<div itemscope itemtype="http://schema.org/Organization" itemref="colleau">
<!-- Phone, adress here -->
</div>
我该怎么做?
只有一个 div
获得 itemscope itemtype="http://schema.org/Organization"
+ itemref
。另一个 div
只得到 id
.
<div itemref="colleau" itemscope itemtype="http://schema.org/Organization">
</div>
<div id="colleau">
<!-- 'itemprop' in here will be added to the Organization -->
</div>
我想 link 另一个 div 中的相同微数据域,这是我拥有的:
<div id="colleau" itemscope itemtype="http://schema.org/Organization">
<!-- Here i got name, foundingDate, founders, etc... -->
</div>
但我在另一个 div 中有 phone 号码和地址,但不是 linking:
<div itemscope itemtype="http://schema.org/Organization" itemref="colleau">
<!-- Phone, adress here -->
</div>
我该怎么做?
只有一个 div
获得 itemscope itemtype="http://schema.org/Organization"
+ itemref
。另一个 div
只得到 id
.
<div itemref="colleau" itemscope itemtype="http://schema.org/Organization">
</div>
<div id="colleau">
<!-- 'itemprop' in here will be added to the Organization -->
</div>