puedes enviar información via json o via post. Aquí tienes un ejemplo de json:
Código HTML:
var value1 = 1;
var value2 = 2;
var value3 = 3;
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "yoururlhere",
data: "{'data1':'" + value1+ "', 'data2':'" + value2+ "', 'data3':'" + value3+ "'}",
success: function (result) {
//do somthing here
}
});
Si quieres enviar via post haz esto:
Código HTML:
$.ajax({
type: "POST",
url: $('form').attr("action"),
data: $('form').serialize(),
success: function (result) {
// do somthing here
}
});