javaScript中将时间戳转换成日期格式
1 function DateFormt(time, format) { 2 var testDate = new Date(time * 1000); 3 var o = 4 { 5 "M+": testDate.getMonth() + 1, 6 "d+": testDate.getDate(), 7 "h+": testDate.getHours(), 8 "m+": testDate.getMinutes(), 9 "s+": testDate.getSeconds(), 10 "q+": Math.floor((testDate.getMonth() + 3) / 3), 11 "S": testDate.getMilliseconds() 12 } 13 if (/(y+)/.test(format)) { 14 format = format.replace(RegExp.$1, (testDate.getFullYear() + "").substr(4 - RegExp.$1.length)); 15 } 16 for (var k in o) { 17 if (new RegExp("(" + k + ")").test(format)) { 18 format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); 19 } 20 } 21 return format; 22 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。