Tema: Checkbox
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/10/2012, 05:28
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 6 meses
Puntos: 1567
Respuesta: Checkbox

Estás identificando mal el form, debe ser

document.forms['f1']

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <style type="text/css">
  8. /*<![CDATA[*/
  9.  
  10. /* estilos */
  11.  
  12. /*]]>*/
  13. <script type="text/javascript">
  14. //<![CDATA[
  15. function visibleChecks(){
  16.  
  17.    for (i=0;i < document.forms['f1'].elements.length;i++){
  18.        if(document.forms['f1'].elements[i].type == "checkbox"){
  19.            document.forms['f1'].elements[i].style.display = "inline";
  20.        }
  21.    }    
  22. }
  23.  
  24. //]]>
  25. </head>
  26. <form name="f1" action="#">
  27. <input type="checkbox" style="display: none;" />
  28. <input type="checkbox" style="display: none;" />
  29. <input type="button" onclick="visibleChecks()" value="mostrar cb" />
  30. </form>
  31. </body>
  32. </html>
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.