como podria crear el script ?..... el formato que requiero es
2009-11-02.... es decira año-mes-dia .... asi con esos guiones...
ayudenme por favor
por ahora tengo esto, para nada q ver que me funciona
Código HTML:
<html> <head> <link rel="stylesheet" href="css/template_css.css" type="text/css" /> <link rel="stylesheet" href="css/theme.css" type="text/css" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="calendar.js"></script> <script type="text/javascript" src="calendar-setup.js"></script> <script type="text/javascript" src="lang/calendar-es.js"></script> <script language="javascript"> window.addEvent("domready", function (){ var f1 = new fecha('fechaInicio', 'call-field-1'); var f2 = new fecha('fechaFin', 'call-field-2'); var f3 = new fecha('call-button-1', null, null, {visible:true, onChange:function(){ var year = this.fecha.year; var mes = this.fecha.mes; var dia = this.fecha.dia; $('fecha_value').setHTML(year+"-"+mes+"-"+dia); }}); }); </script> <link rel="shortcut icon" href="images/favicon.ico" /> <style type="text/css"> @import url("css/calendar-brown.css"); </style> </head> <body> <p align="center">Fecha</p> <table width="23%" border="4" align="center" bgcolor="#FFFFCC"> <form action="php/registrarActividad.php" method="post" name="form1" class="Estilo1"> <tr> <td width="45%">fecha Inicio </td> <td width="55%"><input name="fechaInicio" type="text" id="cal-field-1" size="11" maxlength="10"/> <img src="images/month_f2.png" alt="Seleccione Fecha" width="22" height="22" id="cal-button-1"> <script type="text/javascript"> Calendar.setup({ inputField : "cal-field-1", button : "cal-button-1", align : "Tr" }); </script></td> </tr> <tr> <td> <label>fecha Fin </label> </td> <td> <input name="fechaFin" type="text" id="cal-field-2" size="11" maxlength="10"/> <img src="images/month_f2.png" alt="Seleccione Fecha" width="22" height="22" id="cal-button-2" onClick="submit"> <script type="text/javascript"> Calendar.setup({ inputField : "cal-field-2", button : "cal-button-2", align : "Tr" }); </script></td> </tr></form> </table> </body> </html>