我有以下HTML来构造面包屑:

<ul class="browsePageBC">
   <li class="product-breadcrumb" itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/Wanita" itemprop="url" alt="" title="Wanita"><span class="product-breadcrumb-title" itemprop="title">Wanita</span></a><span class="glyphicon glyphicon-chevron-right"></span></li>
   <li class="product-breadcrumb" itemprop="child" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/Wanita/Aksesoris" itemprop="url" alt="" title="Aksesoris"><span class="product-breadcrumb-title" itemprop="title">Aksesoris </span></a></li>
</ul>

当我在结构化数据测试工具上测试时,this is它给了我什么。想知道为什么它没有正确显示/解析孩子?

最佳答案

下面的示例代码将帮助您声明父属性和子属性

<div id="breadcrumb">
    <span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
        <a rel="home" href="http://www.example.com" itemprop="url">
          <span itemprop="title">Home</span>
        </a> ›
        <span itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
            <a href="http://www.example.com/topic/technology/" itemprop="url">
              <span itemprop="title">Technology</span>
            </a> ›
            <span itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="http://www.example.com/tag/gadgets/" itemprop="url">
                  <span itemprop="title">Gadgets</span>
                </a> ›
                <span>Sweet Post Title Goes Here</span>
            </span>
        </span>
    </span>
</div>

如果这些代码对你有帮助,请告诉我。

08-25 13:20