Guest User

Untitled

a guest
Oct 19th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. function compararFechas(){
  2.  
  3. var forma = document.forms[0];
  4. var frameCierreContable = opener.parent.cierreContable;
  5.  
  6. var anioContable = frameCierreContable.document.getElementById("anio").value;
  7. var mesContable = frameCierreContable.document.getElementById("mes").value;
  8.  
  9. var fecha = forma.fechaValoracion.value.split('/');
  10. var mesValoracion = fecha[1];
  11. var anioValoracion = fecha[2];
  12.  
  13. mesContable = mesContable < 10? '0' + mesContable : mesContable;
  14.  
  15. if(mesValoracion != mesContable || anioValoracion != anioContable){
  16.  
  17. alert("Son fechas diferentes");
  18. }else{
  19. alert("Son fechas iguales");
  20. }
  21. }
Add Comment
Please, Sign In to add comment