日期

Date

日期,例:var date = new Date(); var minute = date.getMinutes()。DateformatgetDategetDaygetMonthgetYeargetHoursgetMinutesgetSecondsgetMillisecondsgetTimesetDatesetMonthsetYearsetHourssetMinutessetSecondssetMilliSecondssetTime

Date

构造函数。
参数:
参数名 类型 必填 说明
string date string 选填 字符串格式日期,支持yyyy-MM-dd HH:mm:ss.SSS,例:var d = new Date('2020-12-01 14:23:10')。不填表示当前日期

format

日期格式化成字符串。
参数:
参数名 类型 必填 说明
string fmt string 必填 字符串格式日期,支持yyyy-MM-dd HH:mm:ss.SSS,例:var str = new Date().format('yyyy-MM-dd')。其中yyyy是完整的公元年,MM是月份,dd是日期,HH:mm:ss 是时、分、秒。 注意:有的格式大写,有的格式小写,例如MM是月份,mm是分;HH是24小时制,而hh是12小时制,SSS表示毫秒。

getDate

返回一个月中的某一天(1 ~ 31)。
参数:
参数名 类型 必填 说明

getDay

返回一周中的某一天(0 ~ 6),0为周日。
参数:
参数名 类型 必填 说明

getMonth

返回月份(0 ~ 11),0为1月。
参数:
参数名 类型 必填 说明

getYear

返回年份,整数。
参数:
参数名 类型 必填 说明

getHours

返回小时(0 ~ 23)。
参数:
参数名 类型 必填 说明

getMinutes

返回分钟(0 ~ 59)。
参数:
参数名 类型 必填 说明

getSeconds

返回秒数(0 ~ 59)。
参数:
参数名 类型 必填 说明

getMilliseconds

返回毫秒(0 ~ 999)。
参数:
参数名 类型 必填 说明

getTime

返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明

setDate

设置Date对象中月的某一天(1 ~ 31)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 一个月中的一天的一个数值(1 ~ 31)。

setMonth

设置Date对象中月份(0 ~ 11)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 表示月份的数值,该值介于0(一月)~ 11(十二月)之间。

setYear

设置Date对象中的年份(四位数字)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 表示年份的四位整数。

setHours

设置Date对象中的小时(0 ~ 23)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 表示小时的数值,介于0(午夜)~ 23(晚上11点)之间。

setMinutes

设置Date对象中的分钟(0 ~ 59)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 表示分钟的数值,介于0 ~ 59之间。

setSeconds

设置Date对象中的秒钟(0 ~ 59)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 表示秒的数值,该值是介于0 ~ 59之间的整数。

setMilliSeconds

设置Date对象中的毫秒(0 ~ 999)。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 介于0 ~ 999之间的整数。

setTime

以毫秒设置Date对象。返回1970年1月1日至今的毫秒数。
参数:
参数名 类型 必填 说明
value integer 必填 要设置的日期和时间据GMT时间1970年1月1日午夜之间的毫秒数。