Introduisez le code suivant dans votre propre code JS :
Copiez le code comme suit :
Date.prototype.format =fonction(format)
{
var o = {
"M+" : this.getMonth()+1, //mois
"j+" : this.getDate(), //jour
"h+" : this.getHours(), //heure
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //seconde
"q+" : Math.floor((this.getMonth()+3)/3), //trimestre
"S" : this.getMilliseconds() //milliseconde
} ;
si(/(y+)/.test(format))
{
format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4- RegExp.$1.length));
}
pour (var k dans 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)) ;
}
}
format de retour ;
} ;
La méthode d'appel est la suivante :
var dt = nouvelle Date();
var nowDate = dt.format("aaaa-MM-jj hh:mm:ss");
Vous pouvez obtenir l'heure actuelle : 2013-12-02 14:02:11