用JavaScript(js)對時間格式化

Date.prototype.format =function(format)
    {
        var o = {
        "M+" : (this.getMonth()+1)+"", //month
   "d+" : this.getDate()+"",    //day
     "h+" : this.getHours()+"",   //hour
   "m+" : this.getMinutes()+"", //minute
   "s+" : this.getSeconds()+"", //second
     "q+" : Math.floor((this.getMonth()+3)/3)+"",  //quarter
   "S" : this.getMilliseconds() //millisecond+""
        }
        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;
    }
以上代碼必須先聲明,而後在使用。使用方法:
var d =new Date().format('yyyy-MM-dd');

另外一種方法:this

在Javascript之中,日期對象是Date,那麼如何將一個日期對象按照定製的格式進行輸出呢? 
  能夠現告訴你,Date對象有有四個內置方法,用於輸出爲字符串格式,分別爲: 
  1)toGMTString,將一個日期按照GMT格式顯示 
  2)toLocaleString,將一個日期按照本地操做系統格式顯示 
  3)toLocaleDateString,按照本地格式顯示一個日期對象的日期部分 
  4)toLocaleTimeString,按照本地格式顯示一個日期對象的時間部分 spa

相關文章
相關標籤/搜索