js 时间日期函数
Posted code never lies
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 时间日期函数相关的知识,希望对你有一定的参考价值。
忘记从哪里拷贝过来的了,侵删
1 Date.prototype.format = function (format) {
2 var date = {
3 "M+": this.getMonth() + 1,
4 "d+": this.getDate(),
5 "h+": this.getHours(),
6 "m+": this.getMinutes(),
7 "s+": this.getSeconds(),
8 "q+": Math.floor((this.getMonth() + 3) / 3),
9 "S+": this.getMilliseconds()
10 };
11
12 if (/(y+)/i.test(format)) {
13 format = format.replace(RegExp.$1, (this.getFullYear() + ‘‘).substr(4 - RegExp.$1.length));
14 }
15
16 for (var k in date) {
17 if (new RegExp("(" + k + ")").test(format)) {
18 format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
19 }
20 }
21
22 return format;
23 }
使用时 new Date(xx).format("yyyy-MM-dd hh:mm:ss")即可
以上是关于js 时间日期函数的主要内容,如果未能解决你的问题,请参考以下文章