본문 바로가기

웹스토리/Jquery,Js

Date.prototype.format 처리

//DATE FORMATTING
//new Date().format("yyyy-MM-dd HH:mm")
Date.prototype.format = function(f) {
if (!this.valueOf()) return " ";

var d = this;

return f.replace(/(yyyy|yy|MM|dd|hh|mm|ss)/gi, function($1) {
switch ($1) {
case "yyyy": return d.getFullYear();
case "yy": return (d.getFullYear() % 1000).zf(2);
case "MM": return (d.getMonth() + 1).zf(2);
case "MM": return (d.getMonth() + 1).zf(2);
case "dd": return d.getDate().zf(2);
case "HH": return d.getHours().zf(2);
case "hh": return ((h = d.getHours() % 12) ? h : 12).zf(2);
case "mm": return d.getMinutes().zf(2);
case "ss": return d.getSeconds().zf(2);
default: return $1;
}
});
};

String.prototype.string = function(len){var s = '', i = 0; while (i++ < len) { s += this; } return s;};
String.prototype.zf = function(len){return "0".string(len - this.length) + this;};
Number.prototype.zf = function(len){return this.toString().zf(len);};