function dateFormat(date, format) {
var o = {
"M ": date.getMonth() 1, //月
"d ": date.getDate(), //日
"h ": date.getHours(), //hour
"m ": date.getMinutes(), //分
"s ": date.getSeconds(), //秒
"q ": Math.floor((date.getMonth() 3) / 3), //四半期
"S": date.getMilliseconds() //ミリ秒
};
//ハンドルyyyy置換を特定の年にする
if (/(y )/.test(format)) {
format = format.replace(RegExp.$1, (date.getFull Year( ) "").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 ? (("000" o[k]).substr(("" o[k]).length)) : ("00" o[k]).substr (("" o[k]).length));
}
}
形式を返します。
}