标签:gettime tostring 文章 string bsp prototype 添加 rdo style
function dateFormat(fmt, date) { var ret; var opt = { "y+": date.getFullYear().toString(), // 年 "M+": (date.getMonth() + 1).toString(), // 月 "d+": date.getDate().toString(), // 日 "H+": date.getHours().toString(), // 时 "m+": date.getMinutes().toString(), // 分 "s+": date.getSeconds().toString() // 秒 // 有其他格式化字符需求可以继续添加,必须转化成字符串 }; for (var k in opt) { ret = new RegExp("(" + k + ")").exec(fmt); if (ret) { fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0"))) } } return fmt; } //调用value是long类型的日期,比如:new Date().getTime() dateFormat("yyyy-MM-dd HH:mm:ss", new Date(value))
或者
在调用之前声明
// 这个声明是在前面 Date.prototype.Format = function (fmt) { var ret; var opt = { "y+": this.getFullYear().toString(), // 年 "M+": (this.getMonth() + 1).toString(), // 月 "d+": this.getDate().toString(), // 日 "H+": this.getHours().toString(), // 时 "m+": this.getMinutes().toString(), // 分 "s+": this.getSeconds().toString() // 秒 // 有其他格式化字符需求可以继续添加,必须转化成字符串 }; for (var k in opt) { ret = new RegExp("(" + k + ")").exec(fmt); if (ret) { fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0"))) } } return fmt; } // 调用 value为long类型的日期,比如:new Date().getTime() new Date(value).Format("yyyy-MM-dd HH:mm:ss")
参考文章:https://www.jianshu.com/p/49fb78bca621
:https://www.cnblogs.com/tylerdonet/p/4625399.html
标签:gettime tostring 文章 string bsp prototype 添加 rdo style
原文地址:https://www.cnblogs.com/xiaostudy/p/11721894.html