是否有使用创建日期和修改日期标记html文档的标准?
Ketil
答案 0 :(得分:1)
如果您愿意使用Schema.org微数据,可以使用dateCreated和dateModified。
这样的事情:
<body itemscope itemtype="http://schema.org/WebPage">
<p>
Created on <time itemprop="dateCreated" datetime="2014-12-29T04:19:22">December 29th, 2014</time>
</p>
</body>