![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
19/01/2002, 03:14
|
Usuario no validado | | Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 23 años, 6 meses Puntos: 0 | |
Re: enviar informacion al popup yo lo haria asi
simulando el metodo get
<script language="Javascript">
var uno, dos, tres, url;
function redireccionar(form){
uno = form.uno.value
dos = form.dos.value
tres = form.tres.value
url = "valores.php?valor="+ uno +"&valor2="+ dos +"&valor3="+tres+"";
window.open(""+url+"","&q uot;, "width=350,height=350")
}
</script>
<form name="forma" >
Primer valor
<input name="uno" type="text" value="">
segundo valor
<input name="dos" type="text" value="">
tercer valor
<input name="tres" type="text" value="">
<input type="button" onclick="redireccionar(this.form)"value= "enviar">
</form> |