当前位置:Gxlcms > 数据库问题 > js-后台数据库返回的时间在前台格式化

js-后台数据库返回的时间在前台格式化

时间:2021-07-01 10:21:17 帮助过:2人阅读

Date.prototype.Format = function (fmt) { //author: meizz
        var o = {
            "M+": this.getMonth() + 1, //月份
            "d+": this.getDate(), //日
            "h+": this.getHours(), //小时
            "m+": this.getMinutes(), //分
            "s+": this.getSeconds(), //秒
            "q+": Math.floor((this.getMonth() + 3) / 3), //季度
            "S": this.getMilliseconds() //毫秒
        };
        if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
        return fmt;
    }

 

new Date(value).Format("yyyy-MM-dd hh:mm");

 

value = 2016-02-29 17:38:20

js-后台数据库返回的时间在前台格式化

标签:

人气教程排行