通过JS对时间转换格式

来源:互联网 发布:温州龙湾数控编程培训 编辑:程序博客网 时间:2024/05/16 06:08

一般在jsp页面需要对时间进行时间格式化的处理。这里先做一个简单的记录,以便大家及自己查看使用

Date.prototype.format = function (format) {      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(format))          format = format.replace(RegExp.$1, (this.getFullYear() + "")              .substr(4 - RegExp.$1.length));      for (var 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;  }  function formatDatebox(value) {      if (value == null || value == '') {          return '';      }      var dt;      if (value instanceof Date) {          dt = value;      } else {          dt = new Date(value);      }     return dt.format("yyyy-MM-dd");} 


0 0
原创粉丝点击