佳锁 發表於 2024-12-28 09:14:43

HTML5扩展itemscope, itemtype, itemprop微数据的解释和应用

<div id="navCategory"><h5 class="catalogue">目录</h5><ul class="first_class_ul"><li><a href="#_label0">一、微数据是?</a></li><li><a href="#_label1">二、微数据语法</a></li><li><a href="#_label2">三、微数据的力量</a></li><li><a href="#_label3">四、一些词汇表介绍</a></li><li><a href="#_label4">五、浏览器支持</a></li><li><a href="#_label5">六、丰富网页摘要应用</a></li><li><a href="#_label6">七、总结</a></li></ul></div><p class="maodian"><a name="_label0"></a></p><h2>一、微数据是?</h2>
<p>一个页面的内容,例如人物、事件或评论不仅要给用户看,还要让机器可识别。而目前机器智能程度有限,要让其知会特定内容含义,我们需要使用规定的标签、属性名以及特定用法等。举个简单例子,我们使用<code>&lt;h1&gt;</code>标签包裹页面标题信息就是为了让机器识别(搜索引擎 &ndash; SEO)。</p>
<p>而微数据是什么呢?在我看来,微数据也是为了方便机器识别而产生的东西。其有特定的规范,有特定的格式。可以丰富搜索引擎的网页摘要。</p>
<p>先来看看比较官方的解释:HTML5 微数据规范是一种标记内容以描述特定类型的信息,例如评论、人物信息或事件。每种信息都描述特定类型的项,例如人物、事件或评论。例如,事件可以包含 venue、starting time、name 和 category 属性。</p>
<p>微数据使用 HTML 标记(常为 &lt;span&gt; 或 &lt;div&gt;)中的简单属性为项和属性指定简要的描述性名称。</p>
<p>上面的释义过于学术化,我们可以将其搁置一边,先看个简单的关于微数据的例子。平时,我们要在页面上显示对一个人的描述,HTML代码可能如下:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;div&gt;
我的名字是王富强,但大家叫我小强。我的个人首页是:
&lt;a href="http://www.example.com"&gt;www.example.com&lt;/a&gt;
我住在上海市富贵新村。我是工程师,目前在财富科技公司上班。
&lt;/div&gt;</pre></div>
<p>而如果使用针对人物的微数据标记,则HTML会如下:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;div itemscope itemtype="http://data-vocabulary.org/Person"&gt;
我的名字是&lt;span itemprop="name"&gt;王富强&lt;/span&gt;,
但大家叫我&lt;span itemprop="nickname"&gt;小强&lt;/span&gt;。
我的个人首页是:
&lt;a href="http://www.example.com" itemprop="url"&gt;www.example.com&lt;/a&gt;
我住在上海市富贵新村。我是&lt;span itemprop="title"&gt;工程师&lt;/span&gt;,
目前在&lt;span itemprop="affiliation"&gt;财富科技公司&lt;/span&gt;上班。
&lt;/div&gt;</pre></div>
<p>您会发现,HTML代码量多了不少,还出现了很多自定义的属性,如<code>itemscope</code>, <code>itemtype</code>, <code>itemprop</code>等。这些属性就是方面机器识别的特定的标记。其含义等依次如下:<br />itemscope<br />定义一组名值对,称为项。</p>
<p>itemprop=&rdquo;属性名&rdquo;<br />添加一个数据项属性。这个属性名可以是个单词或是个URL,与元素包含的文本值相关:</p>
<p>对于大部分元素,属性名值就是元素标签里面的文本值(不是所有标签)。 对于有URL属性的元素,该值就是URL(如<code>&lt;img src=&quot;&quot;&gt;</code>, <code>&lt;a href=&quot;&quot;&gt;</code>, <code>&lt;object data=&quot;&quot;&gt;</code>等)。 对于<code>&lt;time&gt;</code>元素,该值就是<code>datetime=&quot;&quot;</code>属性。 对于<code>&lt;meta itemprop=&quot;&quot; content=&quot;&quot;&gt;</code>, 该值就是<code>content=&quot;&quot;</code>属性。</p>
<p>itemref=&rdquo;&rdquo;<br />允许微数据项通过指向特定ID(含有需要属性的元素)包含非后代属性。</p>
<p>itemtype=&rdquo;&rdquo;<br />微数据定义的类型。其值为URL,扮演词汇表名称的作用。</p>
<p>itemid=&rdquo;&rdquo;<br />允许词汇表给微数据项定义一个全局标识符,例如书的ISBN数值,在同样元素上使用<code>itemid</code>作为数据项的<code>itemscope</code>和<code>itemtype</code>属性。</p>
<p class="maodian"><a name="_label1"></a></p><h2>二、微数据语法</h2>
<p>itemscope和itemprop<br />先来个小例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;下周我要去&lt;span itemprop="name"&gt;韩红刚&lt;/span&gt;家拔萝卜&lt;/p&gt;</pre></div>
<p><code>&lt;p&gt;</code>元素上的<code>itemscope</code>使其成为了一个微数据项,其子元素上<code>itemprop</code>属性的值<code>name</code>为词汇表中的一个关键属性。一个微数据项至少有一个验证的<code>itemprop</code>.</p>
<p><code>itemprop</code>后面的名称可以是单词,也可以是URL,使用URL让这个名称全局唯一。如果使用单词的话,最好使用词汇表,这个单词在该词汇表中有定义,同样可以让名称唯一。</p>
<p>itemprop值<br />对于一些元素,<code>itemprop</code>值来自元素的属性,像是<code>datetime</code>属性或是<code>content</code>属性。还是拔萝卜的例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;time itemprop="date" datetime="2011-12-05"&gt;下周&lt;/time&gt;我要去 &lt;a itemprop="url" href="http://weibo.com/u/2499612703" rel="external nofollow"rel="external nofollow" &gt;韩红刚&lt;/a&gt;家拔萝卜&lt;/p&gt;</pre></div>
<p>定义了两个<code>itemprop</code>下的属性值<code>url</code>和<code>date</code>,所包含的值就是一个url地址(不是元素内的文本值<code>韩红刚</code>)和一个特定格式的时间。</p>
<p>在微数据中,下面的元素以它们的URLs为值:</p>
<p><code>&lt;a href=&quot;&quot;&gt;</code><code>&lt;area href=&quot;&quot;&gt;</code><code>&lt;audio src=&quot;&quot;&gt;</code><code>&lt;embed src=&quot;&quot;&gt;</code><code>&lt;iframe src=&quot;&quot;&gt;</code><code>&lt;img src=&quot;&quot;&gt;</code><code>&lt;link href=&quot;&quot;&gt;</code><code>&lt;object data=&quot;&quot;&gt;</code><code>&lt;source src=&quot;&quot;&gt;</code><code>&lt;video src=&quot;&quot;&gt;</code></p>
<p>相反,以下HTML5元素URL包含属性不作为属性值使用:</p>
<p><code>&lt;base href=&quot;&quot;&gt;</code><code>&lt;script src=&quot;&quot;&gt;</code><code>&lt;input src=&quot;&quot;&gt;</code></p>
<p>上面两个例子,我们可以来个简单的整合,如下:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;time itemprop="date" datetime="2011-12-05"&gt;下周&lt;/time&gt;我要去 &lt;a itemprop="url" href="http://weibo.com/u/2499612703" rel="external nofollow"rel="external nofollow" &gt;&lt;span itemprop="name"&gt;韩红刚&lt;/span&gt;&lt;/a&gt;家拔萝卜&lt;/p&gt;</pre></div>
<p>将<code>itemprop=&quot;name&quot;</code>嵌入在链接之中了。</p>
<p>嵌套项<br />我们可以给包含<code>itemprop</code>的元素添加<code>itemscope</code>插入嵌套项。</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;span itemprop="name"&gt;五月天&lt;/span&gt;主唱是&lt;span itemprop="members"itemscope&gt;&lt;span itemprop="name"&gt;阿信&lt;/span&gt;。&lt;/span&gt;&lt;/p&gt;</pre></div>
<p>定义了一个项,有两个关键字属性:<code>name</code>和<code>members</code>。该<code>name</code>是五月天,<code>members</code>则是嵌套项,包含了一个值为<code>阿信</code>的属性<code>name</code>。注意到<code>members</code>并无文本值。</p>
<p>像上面p标签这种父辈元素没有任何一个微数据项的微数据项称为&ldquo;顶级微数据项&rdquo;。微数据API返回的是顶级数据项及其对应的属性,以及其中嵌套的子数据项。</p>
<p>多属性<br />先看例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;span itemprop="members" itemscope&gt;前S˙H˙E 的成员是
&lt;span itemprop="name"&gt;任家萱&lt;/span&gt;,
&lt;span itemprop="name"&gt;田馥甄&lt;/span&gt;和
&lt;span itemprop="name"&gt;陈嘉桦&lt;/span&gt;.&lt;/span&gt;</pre></div>
<p>项目可以包含不同值的多个属性。例如上例<code>name</code>属性定义了3个值:任家萱、田馥甄和陈嘉桦。</p>
<p>同一个元素同样也可以有多个属性关键名称(用空格分隔),例如下面这个例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;span itemprop="name call"&gt;志玲姐&lt;/span&gt; 是个美女。&lt;/p&gt;</pre></div>
<p>&ldquo;志玲姐&rdquo;即是名字,又是称谓。</p>
<p>通过itemref页面内引用<br />还是先看个例子吧:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope itemref="band-members"&gt;后天我要去看&lt;span itemprop="name"&gt;
S˙H˙E&lt;/span&gt;的演唱会,好兴奋哈!&lt;/p&gt;
……
&lt;span id="band-members" itemprop="members" itemscope&gt;S˙H˙E 的成员是
&lt;span itemprop="name"&gt;任家萱&lt;/span&gt;,
&lt;span itemprop="name"&gt;田馥甄&lt;/span&gt;和
&lt;span itemprop="name"&gt;陈嘉桦&lt;/span&gt;.&lt;/span&gt;</pre></div>
<p>上面的定义通过引用ID <code>band-members</code>包含了<code>members</code>项的三个成员名称属性,每个都是不一样的值。</p>
<p>使用meta添加内容<br />如果你想添加的文本并不是页面内容的一部分,你可以在<code>&lt;meta&gt;</code>元素上使用<code>content</code>属性:<code>&lt;meta itemprop=&quot;&quot; content=&quot;&quot;&gt;</code></p>
<p>举个小例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;span itemprop="name" itemscope&gt;
   钟xx&lt;meta itemprop="likes" content="twins成员"&gt;
&lt;/span&gt;摄影爱好者陈老师的粉丝。&lt;/p&gt;
</pre></div>
<p>不会,有些遗憾的是,某些浏览器会自动把<code>&lt;meta&gt;</code>元素移动到<code>head</code>标签中。比较靠谱的做法是使用<code>itemref</code>做页面内引用,这样即使浏览器移除了,一些工具啥的还是能够识别出微数据。具体做法如下:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope&gt;&lt;span itemprop="name" itemscope itemref="meta-likes"&gt;
   钟xx&lt;meta id="meta-likes" itemprop="likes" content="twins成员"&gt;
&lt;/span&gt;摄影爱好者陈老师的粉丝。&lt;/p&gt;</pre></div>
<p>项类型(itemtype)及全局唯一名字<br />通过<code>itemtype</code>,我们可以给微数据项指定一种类型,这个属性需要使用在含<code>itemscope</code>的元素上。<code>itemtype</code>的值是个URL地址,代表了微数据使用的词汇。请注意,这个地址只能是文本字符串,用来唯一标示词汇表,同时,该地址不一定非要指向真是的网页地址(当然,指向最好了)。这样我们就可以使用词汇表中的name名称作为<code>itemprop</code>名称做些定义了。</p>
<p>例如,下面这个例子。</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope itemtype="http://schema.org/MusicGroup"&gt;后天我要去看&lt;span itemprop="name"&gt;S˙H˙E&lt;/span&gt;的演唱会,好兴奋哈!&lt;/p&gt;</pre></div>
<p><code>http://schema.org/MusicGroup</code>词汇表中有个名为&quot;name&quot;的关键名称,如下截图: <img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845441.png" />用itemid全局标识 有时,某些项需要唯一的标识进行标识。例如书的ISBN数值,我们可以借助itemid属性,如下例子:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;p itemscope itemtype="http://vocab.example.com/book"
itemid="urn:isbn:0321687299"&gt;
&lt;!-- 书信息… --&gt;
&lt;/p&gt;</pre></div>
<p class="maodian"><a name="_label2"></a></p><h2>三、微数据的力量</h2>
<p>说了这么多,你可能会有疑问或不耐烦了:微数据这玩意,貌似蛮复杂,头疼的,看上去鸟用都没有,唉,还是按ctrl+w去微博转转吧~~</p>
<p>为了打消这种疑虑,有必要中间插播介绍了微数据的真正体。我们可能都知道,给元素添加额外的语义东西,可以使用自定义<code>data</code>属性(<code>data-*</code>). 但是,自定义<code>data</code>属性只是纯粹的属性,而微数据有特定的规范,有特定属性名称的词汇表,且更多是服务于现实世界,在这方面是很强大的。</p>
<p>说得太空太虚了吧?确实,过于学术化的说法往往不易让人理解。通俗讲,微数据就是在保证页面内容显示良好的情况下清晰而准确地勾勒出了数据的骨架与精髓,可以通过工具、API等进行方便强大的数据交互。</p>
<p>我们都知道,现在流行的数据交换格式是什么?没错,就是JSON。从某种意义上来讲,微数据的本质就是JSON,哦?没看出来,不急,举个例子就会知道了。</p>
<p>如下HTML下的微数据代码:</p>
<div class="jb51code"><pre class="brush:xhtml;">&lt;section&gt;
&lt;h3&gt;&lt;a href="http://atnd.org/events/5181" title="WDE-ex Vol11『iPad
のウェブデザイン:私たちがみつけたこと 』 : ATND"&gt;WDE-ex Vol.11 — Designing
for iPad: Our experience so far&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;On &lt;time datetime="2010-07-21T19:00:00+09:00"&gt;July 21st 19:00
&lt;/time&gt;-&lt;time datetime="2010-07-21T20:00:00+09:00"&gt;20:00&lt;/time&gt; at
&lt;span itemscope itemtype="http://schema.org/Organization"&gt;
&lt;a itemprop="url" href="http://www.apple.com/jp/retail/ginza/map/"&gt;
&lt;span itemprop="name"&gt;Apple Ginza&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;,
&lt;span itemscope itemtype="http://schema.org/Person"&gt;
&lt;a itemprop="url" href="http://informationarchitects.jp/" title="iA"&gt;
&lt;span itemprop="name"&gt;Oliver Reichenstein&lt;/span&gt;, CEO of iA&lt;/a&gt;
&lt;/span&gt;, will share the lessons they've learned while creating three
iPad apps and one iPad website.&lt;/p&gt;
&lt;/section&gt;</pre></div>
<p>日本,英文不懂没关系,机器也不懂,但是它懂微数据,你也一样。上面微数据的数据本质是什么?很乱,不是吗?但是,如果我们只关注微数据的部分:<code>itemscope</code>, <code>itemprop</code>等,你会发现什么?</p>
<p>我们使用Live Microdata对上面的HTML代码跑一下,会得到下面的JSON数据:</p>
<div class="jb51code"><pre class="brush:xhtml;">{
"items": [
    {
      "type": [
      "http://schema.org/Organization"
      ],
      "properties": {
      "url": [
          "http://www.apple.com/jp/retail/ginza/map/"
      ],
      "name": [
          "Apple Ginza"
      ]
      }
    },
    {
      "type": [
      "http://schema.org/Person"
      ],
      "properties": {
      "url": [
          "http://informationarchitects.jp/"
      ],
      "name": [
          "Oliver Reichenstein"
      ]
      }
    }
]
}</pre></div>
<p><img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845442.png" /></p>
<p>我想,您应该大致明白机器为何可以识别微数据了。由于微数据的这种数据本质特性,在web应用中,我们做一些数据交互的时候,事情就会变得奇妙而轻松。例如,你访问一个你中意的女孩子的个人主页的时候,如果使用微数据,就可以自动把她的一些信息啊联系方式啊什么的放到你的通讯录中,是不是很赞!或是在你的日历表中添加一些需要完成的事件等等。很多真实世界的应用与web应用有了更为轻松强大的结合。</p>
<p class="maodian"><a name="_label3"></a></p><h2>四、一些词汇表介绍</h2>
<p>这里提及的微数据词汇表有三:schema.org词汇表,Google丰富摘要词汇表(www.data-vocabulary.org),WHATWG/microformats.org词汇表。</p>
<p>我大致看了这几个词汇表,不由得心里一咯噔:妈呀,这么多,都介绍的话我这周末只能抱电脑了。因此,这里只大致提点部分提纲性质内容。</p>
<blockquote><p>事件(Events)</p>
<ul><li><a href="http://schema.org/Event" rel="nofollow" target="_blank">schema.org/Event vocabulary</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Event</code></li><li><a href="http://www.google.com/support/webmasters/bin/answer.py?answer=164506" rel="nofollow" target="_blank">http://www.google.com/support/webmasters/bin/answer.py?answer=164506</a>&nbsp;&mdash;&nbsp;<code>http://www.data-vocabulary.org/Event/</code></li><li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html" rel="nofollow" target="_blank">vEvent</a>&nbsp;&mdash;&nbsp;<code>http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html</code></li></ul>
<p>人物(Person)</p>
<ul><li><a href="http://schema.org/Person" rel="nofollow" target="_blank">schema.org Person</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Person</code></li><li><a href="http://microformats.org/profile/hcard" rel="nofollow" target="_blank">vCard</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/profile/hcard</code></li><li><a href="http://data-vocabulary.org/Person" rel="nofollow" target="_blank">Rich Snippets Person</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Person</code></li></ul>
<p>组织或业务(Organisation or business)</p>
<ul><li><a href="http://schema.org/Organization" rel="nofollow" target="_blank">schema.org Organization</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Organization</code></li><li><a href="http://microformats.org/profile/hcard" rel="nofollow" target="_blank">vCard</a>&nbsp;(using&nbsp;<code>fn org</code>) &mdash;&nbsp;<code>http://microformats.org/profile/hcard</code></li><li><a href="http://data-vocabulary.org/Organization" rel="nofollow" target="_blank">Rich Snippets Organization</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Organization</code></li></ul>
<p>日历(Calendar)</p>
<ul><li><a href="http://schema.org/Event" rel="nofollow" target="_blank">schema.org Event</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Event</code></li><li><a href="http://microformats.org/profile/hcalendar" rel="nofollow" target="_blank">vEvent</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/profile/hcalendar</code></li><li><a href="http://data-vocabulary.org/Event" rel="nofollow" target="_blank">Rich Snippets Event</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Event</code></li></ul>
<p>预览(Review)</p>
<ul><li><a href="http://schema.org/Review" rel="nofollow" target="_blank">schema.org Review</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Review</code></li><li><a href="http://www.schema.org/AggregateRating" rel="nofollow" target="_blank">schema.org AggregateRating</a>&nbsp;&mdash;&nbsp;<code>http://www.schema.org/AggregateRating</code>&nbsp;(跟丰富摘要<code>itemtype</code>不同)</li><li><a href="http://microformats.org/wiki/hreview" rel="nofollow" target="_blank">hReview</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/wiki/hreview</code></li><li><a href="http://data-vocabulary.org/Review" rel="nofollow" target="_blank">Rich Snippets Review</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Review</code></li><li><a href="http://www.data-vocabulary.org/Review-aggregate/" rel="nofollow" target="_blank">Rich Snippets Review-aggregate</a>&nbsp;&mdash;&nbsp;<code>http://www.data-vocabulary.org/Review-aggregate</code></li></ul>
<p>许可证(License)</p>
<ul><li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html" rel="nofollow" target="_blank">Licensing works</a>&nbsp;&mdash;&nbsp;<code>http://n.whatwg.org/work</code></li></ul>
<p>产品和服务(Products and services)</p>
<ul><li><a href="http://schema.org/Product" rel="nofollow" target="_blank">schema.org Product</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Product</code>
<ul><li>This can be extended with&nbsp;<a href="http://www.productontology.org/" rel="nofollow" target="_blank">productontology.org descriptions</a>&nbsp;(<a href="http://www.productontology.org/#microdata" rel="nofollow" target="_blank">example</a>)</li></ul></li><li><a href="http://microformats.org/wiki/hproduct" rel="nofollow" target="_blank">hProduct</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/wiki/hproduct</code></li><li><a href="http://purl.org/goodrelations/" rel="nofollow" target="_blank">GoodRelations Product</a>&nbsp;&mdash;&nbsp;<code>http://purl.org/goodrelations/</code>&nbsp;(例如<code>&lt;a&nbsp;itemprop=&quot;http://purl.org/goodrelations/v1#availableDeliveryMethods&quot;&nbsp;&nbsp; &nbsp; &nbsp;href=&quot;hhttp://purl.org/goodrelations/v1#UPS&quot;&gt;via UPS&lt;/a&gt;</code>)</li><li><a href="http://data-vocabulary.org/Product" rel="nofollow" target="_blank">Rich Snippets Product</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Product</code></li></ul>
<p>Atom提要(Atom feed)</p>
<ul><li><a href="http://microformats.org/wiki/hatom" rel="nofollow" target="_blank">hAtom</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/wiki/hatom</code></li></ul>
<p>食谱(Recipes)</p>
<ul><li><a href="http://schema.org/Recipe" rel="nofollow" target="_blank">schema.org Recipe</a>&nbsp;&mdash;&nbsp;<code>http://schema.org/Recipe</code></li><li><a href="http://microformats.org/wiki/hrecipe" rel="nofollow" target="_blank">hRecipe</a>&nbsp;&mdash;&nbsp;<code>http://microformats.org/wiki/hrecipe</code></li><li><a href="http://data-vocabulary.org/Recipe" rel="nofollow" target="_blank">Rich Snippets Recipe</a>&nbsp;&mdash;&nbsp;<code>http://data-vocabulary.org/Recipe</code></li></ul></blockquote>
<p>Google丰富摘要词汇支持微格式和RDFa这是除了微数据之外其他两个增加内容语义的方法。除了这种差异外,基本上与schema.org是想匹配的,除非他们在<code>itemtype</code>中使用<code>www.data-vocabulary.org</code>代替<code>schema.org</code>。尽管google仍然支持这类词汇,但是最新的schema.org提供了更多的词汇,这些词汇还被Bing和Yahoo支持,因此在选择微数据上schema.org可以让你笑得更久。不过您可能仍然希望签出&ldquo;富文档摘要&rdquo;,因为它们代码更简单,书写的时候要比schema.org来得更好。</p>
<p class="maodian"><a name="_label4"></a></p><h2>五、浏览器支持</h2>
<p>微数据浏览器支持情况(截止2011年8月16日)BrowserSupportChrome<img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845443.gif" />Safari<img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845443.gif" />Firefox进行中...Opera最快版本12.00-1033Internet Explorer<img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845443.gif" /></p>
<p>虽然浏览器目前对微数据的支持基本上就是大鸭蛋,但是,由于搜索引擎还有一些三方工具都鸟他,微数据目前还是很有应用价值的。例如Bing, Google, 以及Yahoo使用schema.org词汇表定义的微数据显示搜索结果(特定格式的搜索结果,即将展示)。</p>
<p class="maodian"><a name="_label5"></a></p><h2>六、丰富网页摘要应用</h2>
<p>先看国内应用微数据的实例。</p>
<p>我们打开谷哥哥,输入&ldquo;香口鱼&rdquo;,轻轻地回车,稍等片刻,得到下面截图:<br /><img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845444.png" /></p>
<p>我们对比可以发现,大众点评网搜索显示的样子跟下面的芸芸结果不一样,有评分显示,评论数,日期等。怎么回事?莫非点评给Google塞了很多票子。非也,我们点击链接进入该页面,右键查看源代码,就会发现如下代码:<br /><img alt="" src="https://img.jbzj.com/file_images/article/202412/202412280845445.png" /></p>
<p>上面截图各种标注的部分就是本文多次出现了微数据特有的关键属性,名称等。也就是说,点评的搜索结果的显示之所以不同,是因为其应用了HTML5之微数据,使用的词汇表是相对简单的Google丰富网页摘要词汇表中的。</p>
<p class="maodian"><a name="_label6"></a></p><h2>七、总结</h2>
頁: [1]
查看完整版本: HTML5扩展itemscope, itemtype, itemprop微数据的解释和应用