文章列表
最近做项目的时候,遇到了要用javascript处理后台得来的日期数据,废话不说,以下是我用到的一些方法。
<script>
Date.prototype.format = function(format)
{
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), ...