js 日期格式化 函数
Posted Ali|备份日志
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 日期格式化 函数相关的知识,希望对你有一定的参考价值。
function formatDate(date,format){ var paddNum = function(num){ num += ""; return num.replace(/^(\d)$/,"0$1"); } //指定格式字符 var cfg = { yyyy : date.getFullYear() //年 : 4位 ,yy : date.getFullYear().toString().substring(2)//年 : 2位 ,M : date.getMonth() + 1 //月 : 如果1位的时候不补0 ,MM : paddNum(date.getMonth() + 1) //月 : 如果1位的时候补0 ,d : date.getDate() //日 : 如果1位的时候不补0 ,dd : paddNum(date.getDate())//日 : 如果1位的时候补0 ,hh : paddNum(date.getHours()+1) //时 ,mm : paddNum(date.getMinutes()+1) //分 ,ss : paddNum(date.getSeconds()+1) //秒 } format || (format = "yyyy-MM-dd hh:mm:ss"); return format.replace(/([a-z])(\1)*/ig,function(m){return cfg[m];}); }
以上是关于js 日期格式化 函数的主要内容,如果未能解决你的问题,请参考以下文章
如何从我的 DatePicker 片段中传输格式化的日期字符串?