js 时间格式化
开发的过程中经常会碰到时间格式化的事,针对那些时间戳,2015-05-05,2015/05/05等都能很好的转换成你想要的格式
function FormatDate(strDate, strFormat)
{
if (!strDate) return;
if (!strFormat) format = "yyyy-MM-dd";
switch (typeof strDate)
{
case "string":
strDate = new Date(strDate.replace(/-/g, "/"));
break;
case "number":
strDate = new Date(strDate);
break;
}
if (!strDate instanceof Date) return;
var dict = {
"yyyy": strDate.getFullYear(),
"M": strDate.getMonth() + 1,
"d": strDate.getDate(),
"H": strDate.getHours(),
"m": strDate.getMinutes(),
"s": strDate.getSeconds(),
"MM": ("" + (strDate.getMonth() + 101)).substr(1),
"dd": ("" + (strDate.getDate() + 100)).substr(1),
"HH": ("" + (strDate.getHours() + 100)).substr(1),
"mm": ("" + (strDate.getMinutes() + 100)).substr(1),
"ss": ("" + (strDate.getSeconds() + 100)).substr(1)
};
return strFormat.replace(/(yyyy|MM?|dd?|HH?|ss?|mm?)/g, function ()
{
return dict[arguments[0]];
});
}
FormatDate(strDate, "yyyy-MM-dd HH:mm:ss")
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。