1

「警告: schema.org の microdata が不完全です。」Google 構造化データ テスト ツールの場合。

<div itemscope itemtype="http://schema.org/Product" style="display: none;">
        <img itemprop="image" runat="server" id="listImage" src="" />
        <span itemprop="name" runat="server" id="listName"></span>
        <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
              <span itemprop="ratingValue" runat="server" id="rValue"></span>out of <span itemprop="bestRating">5</span> based on 
              <span itemprop="ratingCount" runat="server" id="allRating"></span>user ratings
        </div>
        <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
               <span itemprop="lowPrice" runat="server" id="lowPrice"></span>to <span itemprop="highPrice" runat="server" id="highPrice"></span>
               <meta itemprop="priceCurrency" content="TRY" />
        </div>
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
               <a itemprop="url" href="" runat="server" id="firstHotel"></a>
        </div>
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
               <a itemprop="url" href="" runat="server" id="secondHotel"></a>
        </div>
</div>

何が問題ですか?ありがとう

4

3 に答える 3

0

Google では、リッチ スニペットをトリガーする可能性がある特定のプロパティが存在する必要があります。ここで Google のドキュメントを確認してください: http://support.google.com/webmasters/bin/answer.py?hl=en&answer=146750

于 2013-03-08T19:59:00.683 に答える
-1

ありがとう。

私が変更され

    <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
           <a itemprop="url" href="" runat="server" id="firstHotel"></a>
    </div>
    <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
           <a itemprop="url" href="" runat="server" id="secondHotel"></a>
    </div>

     <div>
     <a itemprop="url" href="" runat="server" id="firstHotel"></a>
     <a itemprop="url" href="" runat="server" id="secondHotel"></a>
     </div>
于 2013-03-09T07:56:30.270 に答える