参数形式有5种:
1)new Date("month dd,yyyy hh:mm:ss")
2)new Date("month dd,yyyy")
3)new Date(yyyy,mth,dd,hh,mm,ss)
4)new Date(yyyy,mth,dd)
5)new Date(ms)
比如:
new Date("January 12,2006 22:19:35")new Date("January 12,2006")
new Date(2006,0,12,22,19,35)
new Date(2006,0,12)
new Date(1137075575000)
vardate=new
date(yyyy,mth,dd)
如果你指定日期字符串,那么就把前四个放在yyyy那里,然后是逗号",",mth:用整数表示月份,从0(1月)到11(12月),你这个是12月,就用11,dd:表示一个月中的第几天,从1到31。
你这个就应该是var
date=new
date(2011,11,31)
Date对象用于处理日期和时间。
创建
Date
对象的语法:
var
myDate=new
Date()
Date
对象会自动把当前日期和时间保存为其初始值。
参数形式有以下5种:
new
Date("month
dd,yyyy
hh:mm:ss")
new
Date("month
dd,yyyy")
new
Date(yyyy,mth,dd,hh,mm,ss)
new
Date(yyyy,mth,dd)
new
Date(ms)
注意最后一种形式,参数表示的是需要创建的时间和GMT时间1970年1月1日之间相差的毫秒数。各种函数的含义如下:
month:用英文表示月份名称,从January到December
mth:用整数表示月份,从(1月)到11(12月)
dd:表示一个月中的第几天,从1到31
yyyy:四位数表示的年份
hh:小时数,从0(午夜)到23(晚11点)
mm:分钟数,从0到59的整数
ss:秒数,从0到59的整数
ms:毫秒数,为大于等于0的整数
如:
new
Date("January
12,2006
22:19:35")
new
Date("January
12,2006")
new
Date(2006,0,12,22,19,35)
new
Date(2006,0,12)
new
Date(1137075575000)