1. 程式人生 > >js 中自定義轉換時間格式

js 中自定義轉換時間格式

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")