Introduce el siguiente código en tu propio código JS:
Copie el código de código de la siguiente manera:
Fecha.prototipo.formato =función(formato)
{
var o = {
"M+" : this.getMonth()+1, //mes
"d+" : this.getDate(), //día
"h+" : this.getHours(), //hora
"m+" : this.getMinutes(), //minuto
"s+" : this.getSeconds(), //segundo
"q+" : Math.floor((this.getMonth()+3)/3), //trimestre
"S" : this.getMillisegundos() //milisegundo
};
if(/(y+)/.test(formato))
{
format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4- RegExp.$1.length));
}
para(var k en o)
{
if(new RegExp("("+ k +")").prueba(formato))
{
formato = formato.reemplazar(RegExp.$1,RegExp.$1.length==1? o[k] :("00"+ o[k]).substr((""+ o[k]).length)) ;
}
}
formato de devolución;
};
El método de llamada es el siguiente:
var dt = nueva fecha();
var fechaahora = dt.format("aaaa-MM-dd hh:mm:ss");
Puede obtener la hora actual: 2013-12-02 14:02:11