Sie müssen so etwas tun wie
$('.classofyourlink').click(function(e){
e.preventDefault();//in this way you have no redirect
$.post(...);//Make the ajax call
});
Auf diese Weise macht der Benutzer einen Ajax-Aufruf, indem er auf einen Link klickt, ohne umzuleiten. Hier sind die Dokumente für $.post
BEARBEITEN - um den Wert in Ihrem Fall an jQuery zu übergeben, sollten Sie so etwas wie
tun$('.order_this').click(function(e){
e.preventDefault();//in this way you have no redirect
var valueToPass = $(this).text();
var url = "url/to/post/";
$.post(url, { data: valueToPass }, function(data){...} );//Make the ajax call
});