new Date()
new Date(需要获取的时间对象)
new Date(变量名)
Date获取时间的细节函数名(如需要设置时间方法请把前面的get更改成set即可):
getDate() 从Date对象一个月中的某一天(1~31);
getDay() 从Date对象返回一周中的某一天(0~6);
getMonth() 从Date对象返回月份(0~11);
getFullYear() 从Date对象以四位数字返回年份;
getHours() 从Date对象中的小时(0~23);
getMinutes() 返回Date对象的分钟(0~59);
getSeconds() 返回Date对象的秒数(0~59);
getTime() 返回1970年1月1日至今的毫秒数;