var date = new Date( );spa
(1)Date( )get
返回當日的日期和時間date
(2)getDate( )im
返回一月中的某一天(1-31)時間戳
(3)getMonth( )時間
返回一年中的某個月(0~11)co
(4)getFullYear( )數字
返回四位數字的年份new
(5)getHours( )日期
返回小時(0~23)
(6)getMinutes( )
返回分鐘(0~59)
(7)getSeconds( )
返回秒數(0~59)
(8)getMilliseconds( )
返回毫秒數(0~999)
(9)getTime( )
返回1970年1月1日至今的毫秒數,時間戳
(10)setDate( )
設置一月中的某一天(1-31)
(11)setMonth( )
設置一年中的某個月(0~11)
(12)setFullYear( )
設置四位數字的年份
(13)setHours( )
設置小時(0~23)
(14)setMinutes( )
設置分鐘(0~59)
(15)setSeconds( )
設置秒數(0~59)
(16)setMilliseconds( )
設置毫秒數(0~999)
(17)setTime( )
設置1970年1月1日至今的毫秒數,時間戳