javascript實現的時間日期格式化外掛

admin發表於2017-03-20

通常情況下要對時間日期進行格式化處理,因為預設的時間日期格式實在是難以令人滿意,下面就是一段能夠實現自定義時間日期格式的程式碼,非常便利,可以根據自己的需要實現多種時間日期格式化效果。

程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
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), // quarter
    "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;
}
console.log(new Date().format("yyyy-MM-dd hh:mm:ss"));
console.log(new Date().format("yy-MM-dd hh:mm:ss"));
console.log(new Date().format("yy-MM-dd h:m:s"));

相關文章