16/08/2008, 10:50
|
| | | Fecha de Ingreso: agosto-2007 Ubicación: Por rumbos Regios
Mensajes: 485
Antigüedad: 17 años, 5 meses Puntos: 23 | |
Respuesta: Saber que se ha escrito en un form a ver si entendi tienes esto
<form name="form1" action="xxx.php">
<input type="text" name="pag">
<input type"submit" value="return">
</form>
quieres que al presionar el boton te lleve a xxx.php con parametro lo que capturo en el input...
la sintaxis deberia ser xxx.php?pag=me gusta la coliflor
para eso puedes hacer una funcion es script
quedaria algo asi
<script>
function change_action()
{
document.form1.action=document.form1.action+'?pag= '+document.form1.pag.value;
document.form1.submit();
}
</script>
<form name="form1" action="xxx.php">
<input type="text" name="pag">
<input type"button" value="return" onclick="change_action()">
</form> |