Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/10/2010, 16:17
DaronWolff
 
Fecha de Ingreso: octubre-2009
Ubicación: Merida Yucatan
Mensajes: 93
Antigüedad: 15 años, 1 mes
Puntos: 2
Respuesta: Como enviar formularios sin recargar la pagina

yo uso Jquery Ajax y utilizo post
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script>
function guarda_con_ajax()
{
$.post("archivo_php_querecibe_variables.php",{mi_v ariable_1:document.getElementById("campo1").value, mi_variable_2:document.getElementById("campo1").va lue},function(s){alert("dato_guardado")});
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
<label for="textfield"></label>
<input type="text" name="campo1" id="campo1" />
<input type="text" name="campo2" id="campo2" />
<input type="button" name="button" onclick="guarda_con_ajax();" id="button" value="Enviar" />
</form>
</body>
</html>