schema.org 시맨틱 마크 업을 추가하고 있으며 웹 페이지와 상당히 다른 부분에있는 여러 링크를 연결하고 싶습니다.
부모 / 자식으로 지정하면 작동합니다 .
<div itemscope itemtype="http://schema.org/ExerciseAction">
<span itemprop="distance">11 km</span>
<div itemprop="event" itemscope itemtype="http://schema.org/Event">
<span itemprop="name">first event</span>
<span itemprop="startDate">2001-01-01</span>
</div>
</div>
그러나 HTML 산으로 분리 된 경우 링크하는 방법을 모르겠습니다.
<div itemscope itemtype="http://schema.org/Event">
<span itemprop="name">some event</span>
<span itemprop="startDate">2002-02-02</span>
</div>
<!--
....
zillion other HTML stuff
...
-->
<div itemscope itemtype="http://schema.org/ExerciseAction">
<span itemprop="distance">22 km</span>
</div>
"itemref"나 관련 범위를 연결하는 데 무언가를 사용해야한다고 생각하지만 제대로 작동하지 않습니다. 보면 비슷한 질문은 이 경우에 도움을 did't.
업데이트 : 특히 일종의 참조를 통해 작동하는 솔루션을 찾고 있으며 모든 유형의 중첩을 통해 작동하지 않습니다. 또한 두 번째 (작동하지 않는) 예제의 순서는 동일하게 유지되어야합니다 (이벤트 우선, ExerciseAction 둘째). (내 통제 밖에서 몇 가지 이유가 있습니다).
특히 '작동합니다'는 항목이 서로 연결되어 있음을 보여주는 Google 리치 스 니펫 도구 로 정의됩니다 (첫 번째 작업 예에서와 같이)