如何标记html文档以显示文档何时创建/更新?

时间:2014-12-29 09:45:55

标签: html tags meta author web-search

是否有使用创建日期和修改日期标记html文档的标准?

Ketil

1 个答案:

答案 0 :(得分:1)

如果您愿意使用Schema.org微数据,可以使用dateCreateddateModified

这样的事情:

<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>