码迷,mamicode.com
首页 > 编程语言 > 详细

【javascript】日期转字符串

时间:2019-10-22 20:18:47      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:gettime   tostring   文章   string   bsp   prototype   添加   rdo   style   

 

function dateFormat(fmt, date) {
    var ret;
    var opt = {
        "y+": date.getFullYear().toString(),        //
        "M+": (date.getMonth() + 1).toString(),     //
        "d+": date.getDate().toString(),            //
        "H+": date.getHours().toString(),           //
        "m+": date.getMinutes().toString(),         //
        "s+": date.getSeconds().toString()          //
        // 有其他格式化字符需求可以继续添加,必须转化成字符串
    };
    for (var k in opt) {
        ret = new RegExp("(" + k + ")").exec(fmt);
        if (ret) {
            fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0")))
        }
    }
    return fmt;
}

//调用value是long类型的日期,比如:new Date().getTime()
dateFormat("yyyy-MM-dd HH:mm:ss", new Date(value))

 

或者

在调用之前声明

// 这个声明是在前面
Date.prototype.Format = function (fmt) {
    var ret;
    var opt = {
        "y+": this.getFullYear().toString(),        //
        "M+": (this.getMonth() + 1).toString(),     //
        "d+": this.getDate().toString(),            //
        "H+": this.getHours().toString(),           //
        "m+": this.getMinutes().toString(),         //
        "s+": this.getSeconds().toString()          //
        // 有其他格式化字符需求可以继续添加,必须转化成字符串
    };
    for (var k in opt) {
        ret = new RegExp("(" + k + ")").exec(fmt);
        if (ret) {
            fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0")))
        }
    }
    return fmt;
}

// 调用 value为long类型的日期,比如:new Date().getTime()
new Date(value).Format("yyyy-MM-dd HH:mm:ss")

 

参考文章:https://www.jianshu.com/p/49fb78bca621

        :https://www.cnblogs.com/tylerdonet/p/4625399.html

【javascript】日期转字符串

标签:gettime   tostring   文章   string   bsp   prototype   添加   rdo   style   

原文地址:https://www.cnblogs.com/xiaostudy/p/11721894.html

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