標籤:IV div gets new TE AC UNC return mon
/**按所給的時間格式輸出指定的時間格式說明對於 2014.09.05 13:14:20yyyy: 年份,2014yy: 年份,14MM: 月份,補滿兩位,09M: 月份, 9dd: 日期,補滿兩位,05d: 日期, 5HH: 24制小時,補滿兩位,13H: 24制小時,13hh: 12制小時,補滿兩位,01h: 12制小時,1mm: 分鐘,補滿兩位,14m: 分鐘,14ss: 秒,補滿兩位,20s: 秒,20w: 星期,為 [‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘] 中的某一個,本 demo 結果為 五e.g.formatDate(new Date(1409894060000), ‘yyyy-MM-dd HH:mm:ss 星期w‘)2014-09-05 13:14:20 星期五*/function formatDate(t, str) {var obj = {yyyy: t.getFullYear(),yy: ("" + t.getFullYear()).slice(-2),M: t.getMonth()+1,MM: ("0"+(t.getMonth()+1)).slice(-2),d: t.getDate(),dd: ("0"+t.getDate()).slice(-2),H: t.getHours(),HH: ("0"+t.getHours()).slice(-2),h: t.getHours() % 12,hh: ("0"+(t.getHours()%12)).slice(-2),m: t.getMinutes(),mm: ("0"+t.getMinutes()).slice(-2),s: t.getSeconds(),ss: ("0"+t.getSeconds()).slice(-2),w: [‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘][t.getDay()]};return str.replace(/([a-z]+)/ig, function($1) {return obj[$1];});}console.log(formatDate(new Date(), ‘yyyy-MM-dd HH:mm:ss 星期w‘) );
javascript Date 日期格式化 formatDate