Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/05/2002, 13:53
Avatar de caricatos
caricatos
Moderador
 
Fecha de Ingreso: abril-2002
Ubicación: Torremolinos (Málaga)
Mensajes: 19.607
Antigüedad: 22 años, 9 meses
Puntos: 1284
Re: Urgente, fechas!!!

Hola Ludwing:

Espero que te sirva...

<html>
<head>
<script language="javascript">
var mes = ["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"];

function fecha(dato) {
var valor = dato.split("/");
var _mes = mes[(parseInt(valor[1]) - 1)];
var resultado = valor[0] + "-" + _mes + "-" + valor[2].substring(2, 4);
// return resultado;
alert(resultado);
}
</script>
</head>
<body >
<input id=dia type=text value=01/02/2002 >
<b onclick=fecha(dia.value) >ver resultado</b>
</body>
</html>

Si te fijas en el script, hay un comentario que es la línea que vale, el alert es para pruebas.

Saludos