美文网首页
Moment.js 常用转换

Moment.js 常用转换

作者: 丶End | 来源:发表于2019-10-08 16:28 被阅读0次

    http://momentjs.cn/docs/#/parsing/

    <script src="https://cdn.bootcss.com/moment.js/2.24.0/moment.js"></script>
    var now = moment();
    moment().format()  
    moment().format('YYYY-MM-DD')     // "2019-09-20"
    moment("2019-09-20").format('X')      //"1568908800"
    
    
    moment.unix(1568908800).format( )   //"2019-09-20T00:00:00+08:00"
    
    moment.unix(1568908800).format('YYYY-MM-DD')  //   "2019-09-20"
    
    moment('2010-10-20').isAfter('2010-10-19'); // true
    

    相关文章

      网友评论

          本文标题:Moment.js 常用转换

          本文链接:https://www.haomeiwen.com/subject/iktsuctx.html