| ||||
Prueba con esto... <html> <head> <title>Untitled</title> <script> function mostrar(esto){ document.getElementById("resto").innerHTML=documen t.getElementById("div"+esto).innerHTML; document.forms['prueba'].elements['mandar'].disabled=false; } </script> </head> <body> <form name="prueba" action="pepe.html"> <input type="radio" name="formulario" value="1" onClick="mostrar(this.value)" id="formulario" /><label for="formulario">Mostrar Formulario 1</label><br> <input type="radio" name="formulario" value="2" onClick="mostrar(this.value)" id="formulario" /><label for="formulario">Mostrar Formulario 2</label><br> <div id="resto"></div> <input type="submit" name="mandar" disabled="disabled" /> </form> <div id="div1" style="visibility:hidden">Pepe:<input type="text" name="pepe" /><br> Cosa:<input type="text" name="cosa" /><br> </div> <div id="div2" style="visibility:hidden">Zapatos:<input type="text" name="zapatos" /><br> Camisa:<input type="text" name="camisa" /><br> </div> </body> </html>
__________________ Cómo escribir No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |