Descripción rápida de AJAX
AJAX es simplemente JSON asíncrono o XML (en la mayoría de las situaciones más nuevas, JSON). Debido a que estamos realizando una tarea ASYNC, es probable que proporcionemos a nuestros usuarios una experiencia de interfaz de usuario más agradable. En este caso específico, estamos haciendo un envío de FORMULARIO usando AJAX.
Muy rápido, hay 4 Web acciones generales GET
, POST
, PUT
, y DELETE
; éstos corresponden directamente con SELECT/Retreiving DATA
, INSERTING DATA
, UPDATING/UPSERTING DATA
, y DELETING DATA
. Un formulario web HTML / ASP.Net / PHP / Python predeterminado o cualquier otra form
acción es "enviar", que es una acción POST. Debido a esto, a continuación se describe cómo hacer una POST. A veces, sin embargo, con http es posible que desee una acción diferente y probablemente desee utilizar .ajax
.
Mi código específicamente para ti (descrito en los comentarios del código):
/* attach a submit handler to the form */
$("#formoid").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get the action attribute from the <form action=""> element */
var $form = $(this),
url = $form.attr('action');
/* Send the data using post with element id name and name2*/
var posting = $.post(url, {
name: $('#name').val(),
name2: $('#name2').val()
});
/* Alerts the results */
posting.done(function(data) {
$('#result').text('success');
});
posting.fail(function() {
$('#result').text('failed');
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form id="formoid" action="studentFormInsert.php" title="" method="post">
<div>
<label class="title">First Name</label>
<input type="text" id="name" name="name">
</div>
<div>
<label class="title">Last Name</label>
<input type="text" id="name2" name="name2">
</div>
<div>
<input type="submit" id="submitButton" name="submitButton" value="Submit">
</div>
</form>
<div id="result"></div>
Documentación
De la $.post
documentación del sitio web de jQuery .
Ejemplo : enviar datos de formulario mediante solicitudes ajax
$.post("test.php", $("#testform").serialize());
Ejemplo : publicar un formulario usando ajax y poner los resultados en un div
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<form action="/" id="searchForm">
<input type="text" name="s" placeholder="Search..." />
<input type="submit" value="Search" />
</form>
<!-- the result of the search will be rendered inside this div -->
<div id="result"></div>
<script>
/* attach a submit handler to the form */
$("#searchForm").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get some values from elements on the page: */
var $form = $(this),
term = $form.find('input[name="s"]').val(),
url = $form.attr('action');
/* Send the data using post */
var posting = $.post(url, {
s: term
});
/* Put the results in a div */
posting.done(function(data) {
var content = $(data).find('#content');
$("#result").empty().append(content);
});
});
</script>
</body>
</html>
Nota IMPORTANTE
Sin usar OAuth o HTTPS (TLS / SSL) como mínimo, no use este método para datos seguros (números de tarjetas de crédito, SSN, cualquier cosa que sea PCI, HIPAA o relacionada con el inicio de sesión)