Ver Mensaje Individual
  #11 (permalink)  
Antiguo 07/06/2007, 09:25
Rebellion
 
Fecha de Ingreso: mayo-2007
Mensajes: 48
Antigüedad: 17 años, 7 meses
Puntos: 0
Re: Sumar dias a Fecha Actual

derkenuke perdona que estoy un poco lento xD:

el Resultados es este:
Código:
function anadir(num) {
  hoy = new Date();
  for (i=0; i<num; i++)
  while (i<num) {
    hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
	if (hoy.getDay() != 6 && hoy.getDay() != 0)
    i++;  
}
  mes = hoy.getMonth()+1;
  if (mes<10) mes = '0'+mes;
  fecha = hoy.getDate()+ '/' + mes + '/' + hoy.getFullYear();
  document.getElementById('FECHA_PREVISTA').value = fecha; 
}

Lo que tuve que poner fue esto:

while (i<num) {
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
if (hoy.getDay() != 6 && hoy.getDay() != 0)
i++;
}