处理日期和时间的Date

创建Date

const date = new Date();//当日的日期和时间。

获取指定的日期和时间

date.getDate()//一个月中的某一天 (1 ~ 31)
date.getDay() //一周中的某一天 (0 ~ 6)
date.getMonth()//月份 (0 ~ 11)
date.getFullYear()//以四位数字返回年份
date.getHours()//小时 (0 ~ 23)
date.getMinutes()//分钟 (0 ~ 59)
date.getSeconds()//秒数 (0 ~ 59)
date.getMilliseconds()//毫秒(0 ~ 999)
date. getTime()//1970 年 1 月 1 日至今的毫秒
date.setDate()//设置 Date 对象中月的某一天 (1 ~ 31)
date. setMonth()//设置 Date 对象中月份 (0 ~ 11)
date. setFullYear()//设置 Date 对象中的年份(四位数字
date. setHours()//设置 Date 对象中的小时 (0 ~ 23)
date. setMinutes()//设置 Date 对象中的分钟 (0 ~ 59)
date. setSeconds()//设置 Date 对象中的秒钟 (0 ~ 59)
date. setMilliseconds()//设置 Date 对象中的毫秒 (0 ~ 999)
date. setTime()//以毫秒设置 Date 对象
date. toSource()//返回该对象的源代码
date. toString()//把 Date 对象转换为字符串
date. toTimeString()//把 Date 对象的时间部分转换为字符串
date. toDateString()//把 Date 对象的日期部分转换为字符串
date. toLocaleString()//根据本地时间格式,把 Date 对象转换为字符串
date. toLocaleTimeString()//根据本地时间格式,把 Date 对象的时间部分转换为字符串
date. toLocaleDateString()//根据本地时间格式,把 Date 对象的日期部分转换为字符串

你可能感兴趣的:(处理日期和时间的Date)