javaScript 时间转换,将后台返回的时间为一串…

2019-03-10 11:54:43来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

js完整代码:

function transferTime(cTime){
var jsonDate = new Date(parseInt(cTime));
Date.prototype.format = function (format){
var o = {
"y+": this.getFullYear(),
"M+": this.getMonth()+1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds()
             };

if(/(y+)/.test(format)){
format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
}

for(var k in o){
if(new RegExp("("+k+")").test(format)){
format = format.replace(RegExp.$1, RegExp.$1.length == 1?o[k] : ("00" + o[k]).substr("" + o[k].length));
}
}
return format;
};
var newDate = jsonDate.format("yyyy-MM-dd hh:mm:ss");
return newDate }

Trust me!!


原文链接:https://www.cnblogs.com/wuliMan/p/10501724.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:void 0 与 undefined

下一篇:bootstrap思考一