是否有使用创建日期和修改日期标记 html 文档的标准?
凯蒂尔
如果您愿意使用 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>