Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/08/2009, 06:04
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 18 años
Puntos: 126
Respuesta: Valor Checkbox

Hola

Prueba con esto, a ver si es lo que buscas

Código javascript:
Ver original
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function funcion (cual) {
  5.  f = cual.form;
  6.  n = cual.name;
  7. for (var i = 0, nombres = f[n], total = nombres.length; i < total; i++)
  8. if (f[n][i] == cual)
  9. var b = f[n][i].value = f.txt[i].value;
  10. //alert(b);
  11. document.getElementById("can").value = b;
  12. }
  13. </script>
  14. </head>
  15. <body>
  16. <form>
  17. <input type="text" id="txt" value="" /> <input type="checkbox" name="chb" id="chb" value="a" onClick="funcion (this);"/><br />
  18. <input type="text" id="txt" value="" /> <input type="checkbox" name="chb" id="chb" value="2" onClick="funcion (this);"/><br />
  19. <input type="text" id="txt" value="" /> <input type="checkbox" name="chb" id="chb" value="3" onClick="funcion (this);"/><br />
  20. <input type="text" name="can" id="can"  value="">
  21. </form>
  22. </body>
  23. </html>

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />