0

我看到了各种视频丰富片段代码的例子。我不明白的是,有时人们使用标签,有时标签来标记相同的东西。有什么规则或意义吗?结果会因我使用的不同而不同吗?

谢谢!

4

1 回答 1

0

以下面为例。假设我想包含未呈现给查看器的项目的元数据。例如开放时间的周二至周四,它们会进入元标记。请注意,它们仍然作为 mon 和 fri 的标签包装在父 span 中,这些标签呈现给查看器。这使所有五天成为一个项目。

这些和底部附近的地理线标签是在Google 的 Rich Snippet Tool中尝试的简单示例,以查看标签在解释方式上的差异,具体取决于它们的嵌套方式。

    <span itemprop="hasPOS">
        <span itemprop="contactPoint" itemscope="" itemtype="http://schema.org/ContactPoint">
            <a href="tel:13039482988" itemprop="telephone"><i class="icon-phone blue"></i>303-948-2988</a>
        </span><br>
        <span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
            <span itemprop="streetAddress">7921 S. Platte Canyon Rd</span><br>
            <span itemprop="addressLocality" itemscope="" itemtype="http://schema.org/City">
            <span itemprop="name">Littleton,</span>
        </span>
        <span itemprop="addressRegion" itemscope="" itemtype="http://schema.org/State">
            <span itemprop="name">Colorado</span>
        </span><br>
            <span itemprop="postalCode">80128</span>
        </span><br>
        <span itemprop="openingHours" itemscope="" itemtype="http://schema.org/OpeningHoursSpecification">
            <span itemprop="dayOfWeek">
                <span itemscope="" itemtype="http://schema.org/DayOfWeek/Monday">Monday</span>
            </span>-
        <span itemprop="dayOfWeek">
            <span itemscope="" itemtype="http://schema.org/DayOfWeek/Friday">Friday</span>
        </span>7am - 6pm
            <meta itemprop="dayOfWeek" itemtype="http://schema.org/DayOfWeek/Tuesday" content="Tuesday" />
            <meta itemprop="dayOfWeek" itemtype="http://schema.org/DayOfWeek/Wednesday" content="Wednesday" />
            <meta itemprop="dayOfWeek" itemtype="http://schema.org/DayOfWeek/Thursday" content="Thursday" />
            <meta itemprop="opens" itemtype="http://schema.org/Time" content="19:00:00Z-06:00" />
            <meta itemprop="closes" itemtype="http://schema.org/Time" content="08:00:00Z-06:00" /> 
        </span>
        <span itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates">
            <meta itemprop="latitude" content="39.572216" />
            <meta itemprop="longitude" content="-105.056745" />
        </span>
    </span>
于 2014-01-03T23:19:28.073 回答