<time>

引进于 HTML5

概述

 HTML time 标签(<time>) 用来表示24小时制时间或者公历日期,若表示日期则也可包含时间和时区。

此元素意在以机器可读的格式表示日期和时间。 有安排日程表功能的应用可以利用这一点。

用法提示: 如果给定的日期不是正常日期或者在公历中最早的日期之前,请不要使用此元素。
状态提示该元素仍在设计讨论中(http://blog.whatwg.org/weekly-time-data)

使用场景

内容分类 flow content, phrasing content
可包含内容 Phrasing content, 但不能包含子 time 元素。
标签可省略? 起止标签均不能省略。
允许的父元素 任何接受 phrasing content 的元素。
标准文档 HTML5, section 4.6.10

属性

像所有其他元素一样,此元素拥有可以使用 通用属性

datetime
该属性表示此元素的时间和日期,并且属性值必须是一个有效的日期格式,并可包含时间。 如果此值不能被解析为日期,元素不会有一个关联的时间戳.
pubdate
(该属性仍在被WHATWG 和 W3C组织设计和讨论中.) This Boolean attribute specifies that the date and time given by the element is the publication date of a document. The document it applies to is either the nearest ancestor article element or the document as a whole (if there is no ancestor article element). If true, the time element must have a corresponding date. Additionally, each time element indicating a publication date must be the only time element that does so for that document.

DOM 接口

该元素实现了 HTMLTimeElement 接口。

例子

<p>The concert starts at <time>20:00</time>.</p>

上面的HTML会显示:

The concert starts at 20:00.

pubdate 示例

<article>
  <p>This article was created on <time pubdate>2011-01-28</time>.</p>
</article>

上面的HTML会显示:

This article was created on 2011-01-28.

datetime 示例

<p>The concert took place on <time datetime="2001-05-15 19:00">May 15</time>.</p>

上面的HTML会显示:

The concert took place on May 15.

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? 未实现 bug 629801 ? 11.50 ?
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 未实现 ? ? ?

文档标签和贡献者