结构化数据的标准在http://schema.org网站里,itemtype后面的网址即是当前标签的帮助文档地址,直接访问就能访问当前标签的帮助
完整的ItemList代码
1 2 3 4 5 6 7 |
<div class="Side-nav" <span style="color: #ff0000;">itemscope itemtype="http://schema.org/ItemList"</span>> <h2 class="title1" <span style="color: #ff0000;">itemprop="name"</span>>Products</h2> <ul> <li <span style="color: #ff0000;">itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"</span>><a <span style="color: #ff0000;">itemprop="url"</span> href="/product/?list_3_1.html" title="Aluminum Sheet"><span <span style="color: #ff0000;">itemprop="name"</span>>Aluminum Sheet</span></a> <span style="color: #ff0000;"><meta itemprop="position" content="1" /></span></li> </ul> </div> |
面包屑导航
1 2 3 4 5 6 7 8 |
<ol<span style="color: #ff0000;"> itemscope itemtype="http://schema.org/BreadcrumbList"</span>> <li <span style="color: #ff0000;">itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"</span>><a href="/"<span style="color: #ff0000;"> itemprop="item"</span>><span<span style="color: #ff0000;"> itemprop="name"</span>>HOME</span></a> > <span style="color: #ff0000;"><meta itemprop="position" content="1" /></span> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="/product/?list_2_1.html" itemprop="item"><span itemprop="name">Products</span></a> <meta itemprop="position" content="2" /> </li> </ol> |
website
1 2 3 4 |
<head<span style="color: #ff0000;"> itemscope itemtype="http://schema.org/WebSite"</span>> <meta name="copyright" <span style="color: #ff0000;">itemprop="name"</span> content="网站名称" /> <meta content="网址" <span style="color: #ff0000;">itemprop="url"</span>> <meta <span style="color: #ff0000;">itemprop="image"</span> content="logo地址" /> |
产品
1 2 3 4 5 6 7 |
<div class="pro-type-item"<span style="color: #ff0000;"> itemscope itemtype="http://schema.org/Product"</span>> <div class="clearfix"><div class="col-lg-3 col-md-4" ><a href="/product/?list_6_1.html" <span style="color: #ff0000;">itemprop="url"</span> title="Aluminium circle"><img <span style="color: #ff0000;">itemprop="image"</span> src="/upload/sort/Aluminium-circle-s.jpg" alt="Aluminium circle" title="Aluminium circle" /></a></div> <div class="ipro-title-desc col-lg-9 col-md-8"> <h3 <span style="color: #ff0000;">itemprop="name"</span>><a href="/product/?list_6_1.html">Aluminium circle</a></h3> <div<span style="color: #ff0000;"> itemprop="description"</span>>aluminum circle, as aluminum disc circles,is widely used in making aluminum cookware, as aluminum sauce pan, pizza pan ,utensils application .It is normal with thickness from 0.3mm--10mm,diameter from 100mm-800mm </div></div> </div> </div> |
产品加评分等
未经允许不得转载:Windy's Blog » 结构化数据实施备忘