wie die Anzeige ajax-loading Bild

Möchte ich zeigen, ajax-loading Bild. aber weiß nicht, wie das zu tun. hier ist meine Arbeit ajax-Skript. bitte helfen Sie mir
Integration von ajax loading gif.Dank

$(function() { 
    $( "#slider" ).slider({ 
       stop: function(event, ui) {
              $.ajax({
              url: "ajax.php",
              cache: false,
              async: false,
             data: "",
                  success: function(html){
                $("#result_list").html(html);
              }
            });

         }
    });
});
Sollten Sie in Erwägung ziehen, Ihre Anfrage asynchron.

InformationsquelleAutor no_freedom | 2011-05-26

Schreibe einen Kommentar