js 中,如果将时间格式转换为 “2017-08-09 12:00:00”格式,就需要自己写转换的时间格式函数,将其添加到 Date中。
Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds() //秒 }; if (/(y+)/.test(fmt)){ //根据y的长度来截取年 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; }在script中添加 就可以在Date后面直接使用。
new Date().Format("yyyy-MM-dd hh:mm:ss")
本文介绍了一种在JavaScript中实现自定义日期格式化的方法。通过扩展Date原型,可以方便地将日期对象转换为指定格式的字符串,例如“2017-08-09 12:00:00”。此方法适用于需要统一日期显示格式的应用场景。
239

被折叠的 条评论
为什么被折叠?



