JavaScript日期时间格式化函数分享_javascript技巧
程序员文章站
2022-05-31 19:33:14
...
这个函数经常用到,分享给大家。
Date.prototype.format = function(format){
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}
if(/(y+)/.test(format)) format=format.replace(RegExp.$1,
(this.getFullYear()+"").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 ? o[k] :
("00"+ o[k]).substr((""+ o[k]).length));
return format;
}
调用示例:
函数代码:
复制代码 代码如下:
Date.prototype.format = function(format){
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}
if(/(y+)/.test(format)) format=format.replace(RegExp.$1,
(this.getFullYear()+"").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 ? o[k] :
("00"+ o[k]).substr((""+ o[k]).length));
return format;
}
调用示例:
复制代码 代码如下:
推荐阅读
-
javascript 格式化时间日期函数代码脚本之家修正版
-
javascript实现的距离现在多长时间后的一个格式化的日期
-
JavaScript 格式化返回当前日期和时间
-
javascript实现时间日期的格式化的方法汇总
-
javascript 日期时间函数(经典+完善+实用)
-
javascript获取当前日期时间及其它操作函数_时间日期
-
扩展JS Date对象时间格式化功能的小例子_javascript技巧
-
JavaScript显示当然日期和时间即年月日星期和时间_javascript技巧
-
时间戳转换为时间 年月日时间的JS函数_javascript技巧
-
javascript 格式化时间日期函数代码脚本之家修正版