This specification defines the HTML microdata mechanism. This mechanism allows machine-readable data to be embedded in HTML documents in an easy-to-write manner, with an unambiguous parsing model. It is compatible with numerous other data formats including RDF and JSON.
要使用Microdata增加網頁的可讀性,需要有基本HTML概念,如果只會使用Dreamweaver視覺化方式設計網頁,而不會使用文字模式編寫網頁就不適合。
首先需要使用itemscope標籤包裹itemprop屬性。
<div itemscope>
<p>我的名字叫<span itemprop="name">王大明</span>。</p>
</div>
<div itemscope>
<p>作者的名字是<span itemprop="name">張銘倫</span>。</p>
</div>