Código:
Alguien sabe a que se debe?Gracias <html> <head> <title>Documento sin título</title> </head> <script language="javascript1.5"> function Bloquear(){ var valor; if(document.form1.checkbox.checked == "True"){ valor=True; document.form1.fec_ini.disabled=valor; document.form1.fec_ini.disabled=valor; }else{ valor=False; document.form1.fec_ini.disabled=valor; document.form1.fec_ini.disabled=valor; } } </script> <body> <form id="form1" name="form1" method="post" action=""> <p> <input type="checkbox" name="checkbox" value="checkbox" onclick="Bloquear();" /> checkbox</p> <blockquote> <p>fec_ini <input name="fec_ini" type="text" id="fec_ini" /> </p> <p>fec_fin <input name="fec_fin" type="text" id="fec_fin" /> </p> </blockquote> </form> </body> </html>