- new Date() 用当前日期和时间创建新的日期对象
let d = new Date();
console.log(d); // Tue Jan 07 2020 10:31:42 GMT+0800 (中国标准时间)
- new Date(year,month, ...) 用指定的日期和时间创建新的日期对象,7个数字分别指定年,月,日,小时,分钟,秒和毫秒
let d = new Date(2018,11,12,18,00,02,8);
console.log(d);// Wed Dec 12 2018 18:00:02 GMT+0800 (中国标准时间)
js 默认从0到11计算月份,所以0是1月,11是12月;
- toUTCString() 用于将日期转换为 UTC 字符串
var d = new Date();
console.log(d.toUTCString());// Tue, 07 Jan 2020 02:41:48 GMT
- toDateString() 将日期转换为更易读的格式
let d = new Date();
console.log(d.toDateString);// Tue Jan 07 2020
- getDate() 以数值返回天;
- getDay() 以数值获取周名;
- getFullYear() 获取四位的年;
- getHours() 获取小时;
- getMilliseconds() 获取毫秒;
- getMinutes() 获取分;
- getMonth() 获取月(0-11)(所以开发中一般需要+1);
- getSeconds() 获取秒;
- getTime() 获取时间(从1970年1月1日至今).
网友评论