用于多个组织电话号码的HTML微数据

时间:2014-09-23 19:15:18

标签: html5 schema.org microdata

我知道如何为本地商家标记一个电话号码。

但我不确定有多个电话号码的公司。

我是否需要使用新的itemcope绑定每个元素?

示例:

Company X
main tel: 555-1234
sale tel: 555-1235
help tel: 555-1236

1 个答案:

答案 0 :(得分:2)

您不需要新的itemcope - 您只需重复LocalBusiness的电话属性:

<div itemscope itemtype="http://schema.org/LocalBusiness">
  <h1 itemprop="name">Company X</h1>
  <!-- some other information here -->
  <p>
    main tel: <span itemprop="telephone">555-1234</span><br>
    sale tel: <span itemprop="telephone">555-1235</span><br>
    help tel: <span itemprop="telephone">555-1236</span>
  </p>
  <!-- some other information here -->
</div>