$.ajax({
type: "POST",
url: "test.php",
data: {name: "John", location: "Boston"}
}).done(function( msg ) {
alert("Data Saved: " + msg);
});
19 Ноября 2019 12:14
$.ajax({
type: "POST",
url: "test.php",
data: {name: "John", location: "Boston"}
}).done(function( msg ) {
alert("Data Saved: " + msg);
});