Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/05/2007, 09:57
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: Sumar dias a Fecha Actual

Hola de nuevo.

Un ejemplo completo:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
anadir(num) {
  
hoy = new Date();
  for (
i=0i<numi++)
    
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
  
mes hoy.getMonth()+1;
  if (
mes<10mes '0'+mes;
  
fecha hoy.getDate()+ '/' mes '/' hoy.getFullYear();
  
document.getElementById('txt').value fecha
}
</script>
</head>
<body>
<table>
<input type="text" id="txt" />
<img src="imagen1.jpg" onclick = "anadir(3)" />
</body>
</html> 
Saludos,