1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| function nextPage(page, recherche, categorie, souscategorie, nbpix){
//var url = 'func/aff_galerie_ng.php', pars = 'page='+page, target = 'cadre_galerie';
// http://api.jquery.com/empty/
$('cadre_galerie').empty();
// var myAjax = new Ajax.Updater(target, url, {method: 'get', parameters: pars});
// http://javascript.developpez.com/faq/jquery/?page=Ajax#AjaxRequest
// "page=" + page + "&recherche=" + recherche + "&categorie=" + categorie + "&souscategorie=" + souscategorie + "&nbpix=" + nbpix
$.get('func/aff_galerie_ng.php', "page=" + page + "&recherche=" + recherche + "&categorie=" + categorie + "&souscategorie=" + souscategorie + "&nbpix=" + nbpix, function(data, textStatus, jqXHR) {
console.log(data, textStatus, jqXHR);
// succès de la transaction, on doit traiter le contenu de data
}).error(function(jqXHR, textStatus, errorThrown){
console.log(jqXHR, textStatus, errorThrown);
// échec de la transaction, gérer la catastrophe
}).complete(function(jqXHR, textStatus){
console.log(jqXHR, textStatus);
// la transaction s'est terminée par un succès ou par un échec
});
} |
Partager