Har*_*iec 3 html tags format time
文件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.
Run Code Online (Sandbox Code Playgroud)
完成日期加上小时,分钟,秒和一秒的小数部分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)
Run Code Online (Sandbox Code Playgroud)
但是,1994-11-05T08:15:30的T是什么?