<time> - HTML(超文本标记语言) 编辑

概述

 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.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support?未实现 bug 629801?11.50?
FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support?未实现???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:64 次

字数:5936

最后编辑:7 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文