mingyunyuziyou

Moment.js的基本使用
Moment.js的基本使用前言本篇博客只是添加了一些,自己在平时开发过程中用到的Moment.js相关的内容,不...
扫描右侧二维码阅读全文
15
2020/01

Moment.js的基本使用

Moment.js的基本使用

前言

本篇博客只是添加了一些,自己在平时开发过程中用到的Moment.js相关的内容,不定时更新(仅做记录)

  • cnd地址
 <script src="https://cdn.bootcss.com/moment.js/2.24.0/moment.min.js"></script>

常用方法

  • 获取当前时间
var now = moment();
console.log('当前时间',now);
console.log('当前时间',now.format())
//输出结果
当前时间 moment("2019-04-28T23:18:42.466")
当前时间 2019-04-28T23:18:42+08:00

注意获取当前时间的时候要调用.format()

  • 获取当前天数减去5天(减法操作)
const datea=moment().subtract(5,'days').startOf('day').format();
const dateb=moment().subtract(5,'days').startOf('day');
console.log(datea)
console.log(dateb)
//输出结果
2019-04-23T00:00:00+08:00
moment("2019-04-23T00:00:00.000")

注意获取的时候要调用.format()

  • 将2019-03-27T00:00:00+08:00转换为常规年月日
const oo="2014-09-08T08:02:17-05:00";
console.log(moment().format('YYYY-MM-DD'));
//输出结果
2019-04-28

附:
官网学习地址:http://momentjs.cn/

Last modification:January 15th, 2020 at 11:53 pm
If you think my article is useful to you, please feel free to appreciate

Leave a Comment