Using HTML5+Microdata's <meta> tag in the <body>
问题 I want to specify if the Product is "In Stock" using HTML5+Microdata's <meta> tag using Schema.org. I am unsure if this is the correct syntax: <div itemscope itemtype="http://schema.org/Product"> <h2 itemprop="name">Product Name</h2> <dl itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <dt itemprop="price">$1</dt> <meta itemprop="availability" itemscope itemtype="http://schema.org/ItemAvailability" itemid="http://schema.org/InStock"> </dl> </div> 回答1: The meta tag can't be used