3.1.6 pubdate属性
pubdate属性是一个可选的、boolean值的属性,它可以用到article元素中的time元素上,意思是time元素代表了文章(artilce元素的内容)或整个网页的发布日期,pubdate属性的具体使用方法如代码清单3-10所示。
代码清单3-10 pubdate与time结合使用
<article>
<header>
<h1>苹果</h1>
<p>发布日期
<time datetime="2010-10-29" pubdate>2010年10月29日</time>
</p>
</header>
<p>苹果,植物类水果,多次花果…("苹果"文章正文)</p>
…
</article>
你也许会疑惑为什么需要用到pubdate属性,为什么不能认为time元素就直接表示了文章或网页的发布日期呢?请看代码清单3-11.
代码清单3-11 pubdate与time结合使用
<article>
<header>
<h1>关于<time datetime=2010-10-29>10月29日</time>的舞会通知</h1>
<p>发布日期:
<time datetime=2010-10-11 pubdate>2010年10月11日</time>
</p>
</header>
<p>大家好:我是法律系3年级学生代表,……(关于舞会的通知)</p>
</article>
在这个例子中,有两个time元素,分别定义了两个日期-一个是舞会日期,另一个是通知发布日期。由于都使用了time元素,所以需要使用pubdate属性表明哪个time元素代表了通知的发布日期。