JavaScript 日期处理类库 Moment.js

 
   

日期格式化

moment().format('MMMM Do YYYY, h:mm:ss a'); // 五月 31日 2017, 12:01:34 中午
moment().format('dddd');                    // 星期三
moment().format("MMM Do YY");               // 5月 31日 17
moment().format('YYYY [escaped] YYYY');     // 2017 escaped 2017
moment().format();                          // 2017-05-31T12:01:34+08:00

相对时间

moment("20111031", "YYYYMMDD").fromNow(); // 6 年前
moment("20120620", "YYYYMMDD").fromNow(); // 5 年前
moment().startOf('day').fromNow();        // 12 小时前
moment().endOf('day').fromNow();          // 12 小时内
moment().startOf('hour').fromNow();       // 2 分钟前

日历时间

moment().subtract(10, 'days').calendar(); // 2017年5月21日
moment().subtract(6, 'days').calendar();  // 上周四中午12点01
moment().subtract(3, 'days').calendar();  // 上周日中午12点01
moment().subtract(1, 'days').calendar();  // 昨天中午12点01分
moment().calendar();                      // 今天中午12点01分
moment().add(1, 'days').calendar();       // 明天中午12点01分
moment().add(3, 'days').calendar();       // 本周六中午12点01
moment().add(10, 'days').calendar();      // 2017年6月10日

多语言支持

moment().format('L');    // 2017-05-31
moment().format('l');    // 2017-05-31
moment().format('LL');   // 2017年5月31日
moment().format('ll');   // 2017年5月31日
moment().format('LLL');  // 2017年5月31日中午12点01分
moment().format('lll');  // 2017年5月31日中午12点01分
moment().format('LLLL'); // 2017年5月31日星期三中午12点01分
moment().format('llll'); // 2017年5月31日星期三中午12点01分

你可能感兴趣的:(javascript,日期控件,日期控件,前端插件)