JavaScript 获取 date 的方法

  1. new Date() 用当前日期和时间创建新的日期对象
let d = new Date();
console.log(d); // Tue Jan 07 2020 10:31:42 GMT+0800 (中国标准时间)
  1. 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月;

  1. toUTCString() 用于将日期转换为 UTC 字符串
var d = new Date();
console.log(d.toUTCString());// Tue, 07 Jan 2020 02:41:48 GMT
  1. toDateString() 将日期转换为更易读的格式
let d = new Date();
console.log(d.toDateString);// Tue Jan 07 2020
  1. getDate() 以数值返回天;
  2. getDay() 以数值获取周名;
  3. getFullYear() 获取四位的年;
  4. getHours() 获取小时;
  5. getMilliseconds() 获取毫秒;
  6. getMinutes() 获取分;
  7. getMonth() 获取月(0-11)(所以开发中一般需要+1);
  8. getSeconds() 获取秒;
  9. getTime() 获取时间(从1970年1月1日至今).

你可能感兴趣的:(JavaScript 获取 date 的方法)