4

文件http://www.w3.org/TR/NOTE-datetime

说了很多关于日期和时间格式:

Examples

1994-11-05T08:15:30-05:00 corresponds to November 5, 1994, 8:15:30 am, US Eastern Standard Time.

1994-11-05T13:15:30Z corresponds to the same instant.

完整的日期加上小时、分钟、秒和秒的小数部分 YYYY-MM-DDThh:mm:ss.sTZD(例如 1997-07-16T19:20:30.45+01:00)

在哪里:

 YYYY = four-digit year
 MM   = two-digit month (01=January, etc.)
 DD   = two-digit day of month (01 through 31)
 hh   = two digits of hour (00 through 23) (am/pm NOT allowed)
 mm   = two digits of minute (00 through 59)
 ss   = two digits of second (00 through 59)
 s    = one or more digits representing a decimal fraction of a second
 TZD  = time zone designator (Z or +hh:mm or -hh:mm)

但是,1994-11-05T08:15:30 中的 T 是为了什么?

4

2 回答 2

10

从格式部分的第二段:

请注意,“T”按字面意思出现在字符串中,表示时间元素的开始,如 ISO 8601 中所指定。

于 2013-02-01T08:17:09.437 回答
3

它只是一个分隔符,用于指定字符串的时间部分从哪里开始。

于 2013-02-01T08:18:47.310 回答