Hola, jUaN_
Así:
Código:
function muestraFechayHora() {
var dia = aDosCifras(hoy.getDate())
var mes = aDosCifras(hoy.getMonth()+1)
var anno = hoy.getFullYear()
var hora = aDosCifras(hoy.getHours())
var minu = aDosCifras(hoy.getMinutes())
var segu = aDosCifras(hoy.getSeconds())
alert('ahora mismo es ' + dia + '/' + mes + '/' + anno + ' ' + hora + ':' + minu + ':' + segu)
}
function aDosCifras(tx) {
tx = tx.toString()
if (tx.length==1) {tx='0'+tx}
return tx
}
(Es primitivo, pero seguro; quizás se pueda hacer más directamente usando los formatos predefinidos de fecha, pero pueden depender del navegador o del país; con este fuerzas el formato. Claro que si lo lee un norteamericano confundirá el día con el mes)