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 时间日期函数的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

js简洁代码片段

js代码片段: utils/lcoalStorage/cookie

js中怎么把日期转换成数字?

vscode代码片段建议bug

js 日期计算星座 根据生日的月份和日期,一行代码计算星座的js小函数(转)