Date 对象用于处理日期和时间。创建 Data 对象语法如下:
var date_obj = new Date( arg )
arg 为 Data 对象构造函数可选参数。当省略此参数时,Data 对象会自动将当前的日期和时间保存为才初始值。也可以指定 arg 参数来设定 Date 对象的日期与时间值,可以接受的参数如下:
参数格式 | 参数说明与例子 |
---|---|
milliseconds | 数字格式,表示 1970 年 1月 1 日 0 时 到该数字的毫秒数 new Date( 1289403980906 ) |
datestring | 字符串表示的日期与时间,省略时间则默认为 0 点 new Date( "Mar 04, 2012 22:15:14" ) |
year, month | 4位数字的年份,0-11 分别表示 1-12 月 new Date( 2012, 3 ) |
year, month, day | day 用 1-31 表示月中的某天 new Date( 2012, 3, 4 ) |
year, month, day, hours | hours 用 0-23 表示一天中的24小时 new Date( 2012, 3, 4, 22 ) |
year, month, day, hours, minutes | minutes 用 0-59 表示分钟数 new Date( 2012, 3, 4, 22, 15 ) |
year, month, day, hours, minutes, seconds | seconds 用 0-59 表示秒数 new Date( 2012, 3, 4, 22, 15, 14 ) |
year, month, day, hours, minutes, seconds, microseconds | microseconds 用 0-999 表示毫秒数 new Date( 2012, 3, 4, 22, 15, 14, 100 ) |
Data 对象获取的日期时间基于用户客户端而来(它不是总是可靠的),要想得到服务器的时间日期值,参见《PHP 时间日期》。