2014-09-23 4 views
1

지역 비즈니스에 대해 하나의 전화 번호를 마크 업하는 방법을 알고 있습니다.여러 조직의 전화 번호 용 HTML Microdata

하지만 여러 개의 전화 번호가있는 업체는 확실하지 않습니다.

각 항목을 새로운 itemscope로 바인딩해야합니까?

예 :

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

답변

2

당신은 새의 itemscope 필요하지 않습니다 - 당신은 단지 현지 업체의 전화 속성을 반복 할 수 있습니다 :

<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> 
+0

감사합니다. 의미론이 정의 목록에서 여전히 작동한다고 생각합니까? – Chris

+1

예, 전화 번호를 정의 목록, 정렬되지 않은 목록, 작은 테이블에 넣을 수 있습니다. HTML 요소는 마이크로 데이터에 영향을 미치지 않습니다. –