Hola
Podría ser algo como esto, no lo he probado
Supongamos que este es el formulario
Código html:
Ver original<input type="text" id="txt_1" value="" /> <input type="checkbox" id="chb" value="1" onClick="funcion (this.id);"/><br> <input type="text" id="txt_2" value="" /> <input type="checkbox" id="chb" value="2" onClick="funcion (this.id);"/><br> <input type="text" id="txt_3" value="" /> <input type="checkbox" id="chb" value="3" onClick="funcion (this.id);"/>
Código javascript
:
Ver originalfunction funcion (c) {
var b = document.getElementById(c);
if (b.checked);
b.value = document.getElemtById("txt"+c).value;
}
Suerte