首页 > Js/Jquery

JS日期格式化

发表于2015-08-01 14:39:32| 1102次阅读| 来源webkfa| 作者js,javascript

摘要:为Javascript的Date类型增加原型方法,以便日期格式化;Date.prototype.format = function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h...

为Javascript的Date类型增加原型方法,以便日期格式化;

01Date.prototype.format = function(format){
02var o = {
03"M+" : this.getMonth()+1, //month
04"d+" : this.getDate(), //day
05"h+" : this.getHours(), //hour
06"m+" : this.getMinutes(), //minute
07"s+" : this.getSeconds(), //second
08"q+" : Math.floor((this.getMonth()+3)/3), //quarter
09"S" : this.getMilliseconds() //millisecond
10}
11 
12if(/(y+)/.test(format)) {
13format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
14}
15 
16for(var k in o) {
17if(new RegExp("("+ k +")").test(format)) {
18format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length));
19}
20}
21return format;
22}

开始调用:

1alert(new Date().Format("yyyy年MM月dd日"));
2alert(new Date().Format("MM/dd/yyyy"));
3alert(new Date().Format("yyyyMMdd"));
4alert(new Date().Format("yyyy-MM-dd hh:mm:ss"));

 

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1