var time = new Date(); // 获取客户端本机时间,日期格式
Sun Jul 08 2019 16:37:50 GMT+0800 (中国标准时间)
typeof new Date() -> 'object'
time.getFullYear() // 获取四位整数年
time.getMonth() // 获取月 0-11代表1-12月
time.getDate() // 获取日
time.getDay() // 获取星期几 0-6 表示周日到周六
time.getHours() // 获取时
time.getMinutes() // 获取分
time.getSeconds() // 获取秒
time.getMilliseconds() // 获取毫秒
time.getTime() // 获取当前日期与1970-01-01 00:00:00 的毫秒差
var time = new Date('2019-07-07');
// 传递时间格式字符串,相当于把该时间转为标准时间格式字符串,之后就可以调用以上时间的方法
// 时间格式字符串
'2019-07-07' IE无法识别
'2019/07/07'
'2019/07/07 16:54:22'
'1527584521' (距1970-01-01 00:00:00 的毫秒差)
网友评论