可以在meta标签中实现微数据吗?
请考虑以下标记有属性的代码以提供微数据: <!DOCTYPE html> <html> <head> <title>Micro data test - Normal version</title> </head> <body> <div itemscope itemtype="http://schema.org/Product"> <h1 itemprop="name">Product name</h1> <img alt="" itemprop="image" src="http://placehold.it/200x200" /> <div itemprop="description">This is the product description.</div> <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <meta content="in_stock" itemprop="availability" /> <span content="GBP" itemprop="priceCurrency">£</span><span itemprop="price">100.00</span> </div> </div> </body> </html> 使用Google的结构化数据测试工具可得出积极的结果。 在测试示例中这很好,但是,我们希望在HTML结构差异很大的各种站点上实现微数据。要以这种方式实现属性,将需要有人分别在每个站点上手动编辑HTML标记。 最好,我们希望能够调用一个将所有微数据打包在一个位置的函数。从技术上讲,这可以通过以下方式使用元标记来实现: <!DOCTYPE …