日期格式互转:(整型)时间戳与日期格式转换

  • Post author:
  • Post category:其他


日期转成(整型)时间戳大家都知道:

var inow = Date.parse(new Date());//把当前时间转成毫秒

但把这个毫秒怎么转成正常的日期格式呢? 请看以下方法:

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;
}

使用方法:

var inow = Date.parse(new Date());//把当前时间转成毫秒
var strDate = inow .Format("yyyy-MM-dd hh:mm:ss"); 

是不是很简单。

PS,以上 prototype 方法作者是 – meizz。原文地址找不到了,实在不好意思!感谢原作者!!



版权声明:本文为cen_cs原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。