首页 > 编程语言 > 详细

javascript Date 日期格式化 formatDate

时间:2018-07-01 21:37:34      阅读:178      评论:0      收藏:0      [点我收藏+]
/**
按所给的时间格式输出指定的时间
格式说明
对于 2014.09.05 13:14:20
yyyy: 年份,2014
yy: 年份,14
MM: 月份,补满两位,09
M: 月份, 9
dd: 日期,补满两位,05
d: 日期, 5
HH: 24制小时,补满两位,13
H: 24制小时,13
hh: 12制小时,补满两位,01
h: 12制小时,1
mm: 分钟,补满两位,14
m: 分钟,14
ss: 秒,补满两位,20
s: 秒,20
w: 星期,为 [‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘] 中的某一个,本 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

原文:https://www.cnblogs.com/mingzhanghui/p/9251311.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!