日期格式化

function formatDate(value, fmt, emptyText) {
fmt = fmt || "yyyy-MM-dd hh:mm:ss";
if (!value) return emptyText || "";
let v = value;
if (Object.prototype.toString.call(value) == "[object String]") {
let vs = value.split("GMT");
v = vs[0].replace(/-/g, "/");
}
let getDate = new Date(v);
let o = {
"M+": getDate.getMonth() + 1,
"d+": getDate.getDate(),
"h+": getDate.getHours(),
"m+": getDate.getMinutes(),
"s+": getDate.getSeconds(),
"q+": Math.floor((getDate.getMonth() + 3) / 3),
S: getDate.getMilliseconds(),
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(
RegExp.1, (getDate.getFullYear() + "").substr(4 - RegExp.1.length)
);
}
for (let 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;
}

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容