javascript格式化时间戳为自定义类型的字符串格式
程序员文章站
2022-06-16 12:06:11
...
Date.prototype.format = function (fmt) { | |
var o = { | |
"M+": this.getMonth() + 1, //月份 | |
"d+": this.getDate(), //日 | |
"h+": this.getHours(), //小时 | |
"m+": this.getMinutes(), //分 | |
"s+": this.getSeconds(), //秒 | |
"q+": Math.floor((this.getMonth() + 3) / 3), //季度 | |
"S": this.getMilliseconds() //毫秒 | |
}; | |
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); | |
for (var k in o) | |
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); | |
return fmt; | |
} |
上一篇: php方便 iconFont打包
推荐阅读
-
C#程序编写高质量代码改善的157个建议【13-15】[为类型输出格式化字符串、实现浅拷贝和深拷贝、用dynamic来优化反射]
-
javascript格式化时间戳为自定义类型的字符串格式
-
javascript格式化时间戳为自定义类型的字符串格式
-
javascript中处理时间戳为日期格式的方法_javascript技巧
-
当自定义数据属性为json格式字符串时jQuery的data api问题探讨_javascript技巧
-
javascript中处理时间戳为日期格式的方法_javascript技巧
-
格式化时间戳为日期格式 如,'%Y-%m-%d'类型
-
用JavaScript将从数据库中读取出来的日期型格式化为想要的类型。_时间日期
-
用JavaScript将从数据库中读取出来的日期型格式化为想要的类型。_时间日期
-
格式化时间戳为日期格式 如,'%Y-%m-%d'类型