html – 如何隐藏微数据模式?

前端之家收集整理的这篇文章主要介绍了html – 如何隐藏微数据模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下问题.我已经将微数据模式添加到我的页面,但我想隐藏.
任何人都有想法?

我使用的代码如下:

<div itemscope itemtype="http://schema.org/LocalBusiness">
<a itemprop="url" href="http://www.example.net/"><div itemprop="name"><strong>Audiosky Mobile Development</strong></div>
</a>
<div itemprop="description">Description/div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">Los Angeles</span><br>
<span itemprop="addressRegion">California</span><br>
<span itemprop="postalCode"></span><br>
<span itemprop="addressCountry">USA</span><br>
</div>
</div>

解决方法

如果要隐藏您的标记,您可以使用元标记.
就像从schema.org Getting Started page的例子
<div itemscope itemtype="http://schema.org/Offer">
  <span itemprop="name">Blend-O-Matic</span>
  <span itemprop="price">$19.95</span>
  <div itemprop="reviews" itemscope itemtype="http://schema.org/AggregateRating">
    <img src="four-stars.jpg">
    **<@R_502_338@ itemprop="ratingValue" content="4">**
    **<@R_502_338@ itemprop="bestRating" content="5">**
    Based on <span itemprop="ratingCount">25</span> user ratings
  </div>
</div>

对于不可见的链接,使用标签链接就像例子.

<div itemscope itemtype="http://schema.org/Offer">
  <span itemprop="name">Blend-O-Matic</span>
  <span itemprop="price">$19.95</span>
  **<link itemprop="availability" href="http://schema.org/InStock">**Available today!
</div>

然而,不要过度使用隐藏的文本,因为搜索引擎可能会判断它有点垃圾.在你的情况下,我建议在你的主页或联系页面的地址块中放置标记,并且只隐藏几个标签.

原文链接:https://www.f2er.com/html/227903.html

猜你在找的HTML相关文章