We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

sendoa on 07/20/06


Tagged

fecha validar


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

xaviaracil
meth
Leech


Comprobar fecha


Published in: JavaScript 


  1. /**--------------------------
  2. //* Validate Date Field script- By JavaScriptKit.com
  3. //* For this script and 100s more, visit http://www.javascriptkit.com
  4. //* This notice must stay intact for usage
  5. ---------------------------**/
  6.  
  7. /*
  8.  * Retocado por Sendoa Portuondo para un funcionamiento más personalizado
  9.  */
  10. function checkdate(dia, mes, anio){
  11. var validformat = /^\d{2}\/\d{2}\/\d{4}$/ //Basic check for format validity
  12. var returnval = false;
  13.  
  14. if(!validformat.test(input.value)){
  15. return false;
  16. }else{ //Detailed check for valid date ranges
  17. var monthfield = mes;
  18. var dayfield = dia;
  19. var yearfield = anio;
  20. var dayobj = new Date(yearfield, monthfield-1, dayfield);
  21. if ((dayobj.getMonth()+1!=monthfield)||(dayobj.getDate()!=dayfield)||(dayobj.getFullYear()!=yearfield)){
  22. return false;
  23. }else{
  24. return true;
  25. }
  26. }
  27.  
  28. return true;
  29. }

Report this snippet 

You need to login to post a comment.