javascript 格式化时间日期函数代码

发布时间:2020-08-31编辑:脚本学堂
分享一个javascript 格式化时间日期函数,修正后的js日期格式化函数,有需要的朋友参考下。

javascript中new Date()得到的是一个国际化时间格式的时间值,在使用中文时不方便。
需要对javascript中的日期时间进行格式化。

来看下面的例子:
 

复制代码 代码示例:
<script>
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
} //js格式化
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;
}
//调用的方法
var t=new Date();
document.write("格式化前:"+t+"<br>");
t=new Date().format("yyyy-MM-dd hh:mm:ss");
document.write("格式化后:"+t);
</script>
 

js时间戳格式化成日期格式的几种方法
JS时间格式化的方法汇总
javascript实现的Date日期格式化函数
javascript实现(Date format)日期格式化的三个例子
javascript 格式化货币数据的代码
JS Number对象格式化方法的实例代码
js 日期格式化的例子
javascript格式化时间日期函数举例
js格式化日期时间型数据函数的实现代码
通过正则格式化url查询字符串的代码