官方文档

格式化字符串

YYYY, YY, MM, DD, HH, hh, mm: ss。

初始化

  1. moment('20:10:30', 'HH:mm:ss')
  2. moment("29-06-1995", ["MM-DD-YYYY", "DD-MM", "DD-MM-YYYY"])

格式化

  1. moment().format('YYYY/MM/DD HH:mm')

转化成时间戳

  1. moment().valueOf() // (new Date()).getTime()

获取 & 设置

  1. moment().year(2022).year() // 2022
  2. moment().month()
  3. moment().day()

比较

  1. moment('2010-10-20').isSame('2010-10-20')
  2. moment('2010-01-01').isSame('2010-02-01', 'day')
  3. moment().isAfter
  4. moment().isBefore

是否是闰年

  1. moment().isLeapYear()