Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/12/2007, 14:09
Avatar de pcarvajal
pcarvajal
 
Fecha de Ingreso: enero-2002
Mensajes: 701
Antigüedad: 23 años, 2 meses
Puntos: 8
Re: Pasar Variable Campo Text En Vinculo

Claro, sería algo asi
Cita:
function TuFuncion(valor1,valor2,valor3){
alert(valor1);
alert(valor2);
alert(valor3);
}

<form name="frm">
<input type="text" name="texto1" value="1">
<input type="text" name="texto2" value="2">
<input type="text" name="texto3" value="3">
</form>
<a href="#" onclick="TuFuncion(document.frm.texto1.value,docum ent.frm.texto2.value,document.frm.texto3.value)">
Ojala te sirva,
Saludos!