Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/11/2013, 07:07
Avatar de marlanga
marlanga
 
Fecha de Ingreso: enero-2011
Ubicación: Murcia
Mensajes: 1.024
Antigüedad: 14 años
Puntos: 206
Respuesta: [Fechas]Problemas sumar fechas

http://jsfiddle.net/bwJ2u/

Código Javascript:
Ver original
  1. Date.prototype.sumarDias=function(dias){
  2.     if (!isNaN(dias))
  3.     {
  4.         dias=parseInt(dias);
  5.         this.setDate(this.getDate()+dias);
  6.     }
  7.     return this;
  8. }
  9.  
  10. var hoy=new Date();
  11. alert(hoy);
  12. hoy.sumarDias(1);
  13. alert(hoy);