Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/05/2010, 11:51
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Respuesta: Rellenar formulario

Hola imorap

Prueba este código:
Código Javascript:
Ver original
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function copiar(frm) {
  5.     if (frm.chk.checked)
  6.     frm.dato1envio.value=frm.dato1personal.value;
  7.   else
  8.     frm.dato1envio.value='';
  9. }
  10. </script>
  11. </head>
  12. <body>
  13. <form name="algo">
  14. <input type="text" name="dato1personal" />
  15. <input type="checkbox" name="chk"onclick="copiar(this.form)" />
  16. <input type="text" name="dato1envio" />
  17. </form>
  18. </body>
  19. </html>

Saludos,