码迷,mamicode.com
首页 > Web开发 > 详细

js 格式化时间毫秒

时间:2018-08-21 18:23:59      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:col   new   fine   pre   min   cond   temp   var   2-2   

//格式华日期为2017-12-20
    function datefomate(value) {
        if(value==null || value == undefined){
            return "";
        }
        var date = new Date(value);
        
        Y = date.getFullYear(),
            m = date.getMonth()+1,
            d = date.getDate(),
            H = date.getHours(),
            i = date.getMinutes(),
            s = date.getSeconds();
        return Y+‘-‘+m+‘-‘+d;
    };

在 mui的template模板中 <span id="">{{item.createTime|datefomate}}</span>

js 格式化时间毫秒

标签:col   new   fine   pre   min   cond   temp   var   2-2   

原文地址:https://www.cnblogs.com/zhou-pan/p/9512936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!