js格式化时间的简单实例
更新时间:2016年11月27日 15:32:49 作者:九成
本文分享了js格式化时间的实例代码,需要的朋友可以看下
Date.prototype.format = function(format) { //author: meizz let o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "H+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "f+": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(format)) format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (let 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 d=new Date(); d.format('yyyy/MM/dd HH:mm'); //"2016/11/25 10:01"
以上就是本文的全部内容,希望对大家有所帮助,同时也希望多多支持脚本之家!
相关文章
重学 JS:为啥 await 不能用在 forEach 中详解
这篇文章主要介绍了重学 JS:为啥 await 不能用在 forEach 中,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-04-04javascript之querySelector和querySelectorAll使用说明
其实关于querySelector和querySelectorAll的介绍说明很多,在此主要是做个记录2011-10-10JavaScript高级程序设计 读书笔记之九 本地对象Array
本地对象Array,数组等操作函数2012-02-02
最新评论