创建Date对象

  1. var d = new Date();
  2. var d = new Date(milliseconds);
  3. var d = new Date(dateString);
  4. var d = new Date(year, month, day, hours, minutes, seconds, milliseconds);
语法 描述
new Date() 返回 Date 对象的小时
getDate() 返回 Date 对象的天数
getDay() 返回 Date 对象星期
getFullYear() 返回 Date 对象四位数的年份
getHous() 返回 Date 对象的小时
getMIlliseconds() 返回 Date 对象的毫秒(0~999)
getMinutes() 返回 Date 对象的分钟
getMonth() 返回 Date 的月份
getSeconds() 返回 Date 对象的秒数
getTime() 返回 1970年1月1日至今的毫秒数
UTC() 根据世界时返回 1970 年 1 月 1 日 到指定日期的毫秒数。
valueOf() 返回 Date 对象的原始值。

例子

  1. var date = new Date();
  2. console.log(date)
  3. console.log(date.getFullYear())
  4. console.log(date.getMonth())
  5. console.log(date.getDate());
  6. console.log(date.getDay());
  7. console.log(date.getHours());
  8. console.log(date.getMinutes());
  9. console.log(date.getSeconds());
  10. var date2 = new Date();
  11. var times = date2.getTime();
  12. console.log(times)
  13. // times += 3600 * 24 * 1000
  14. // var date2 = new Date(2021,00,30,12,00,00)
  15. console.log(date2);
  • 同理将上面表格中的get改为set 表示为设置Date对象中的某某某…

    常用方法

    | 语法 | 描述 | | :—- | :—- | | toStrig() | 把 Date 对象转换为字符串 | | toTimeString() | 把Date 对象的时间部分转为字符串。 | | getDay() | 返回 Date 对象星期 |