Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/11/2004, 18:37
angsanchez
 
Fecha de Ingreso: octubre-2004
Ubicación: España
Mensajes: 894
Antigüedad: 20 años, 2 meses
Puntos: 3
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)