Date函数
最后更新于:2022-04-01 22:07:36
[toc]
###Date()
####返回当天的日期和时间
###getDate()
####返回当前月份的日期
###getDay()
####从日期对象返回一周中的某一天 (0 ~ 6)
###getMonth()
####从日期对象返回月份 (0 ~ 11)
###getFullYear()
####返回日期中的年份
###getHours()
####返回日期对象的小时 (0 ~ 23)
###getMinutes()
####返回日期对象的分钟 (0 ~ 59)
###getSeconds()
####返回日期对象的秒数 (0 ~ 59)
###getMilliseconds()
####返回日期对象的毫秒(0 ~ 999)
###getTime()
####返回 1970 年 1 月 1 日至今的毫秒数
###parse()
####解析一个日期时间字符串,并返回毫秒数
###setTime()
####以毫秒设置 Date 对象
###setHours()
####设置date对象的小时,分钟,秒和毫秒
###toDateString()
####把Date对象的日期部分转换为字符串
###setMinutes()
####设置date对象的分钟,秒和毫秒
';