-2

こんにちは、ajax 呼び出し中に読み込みパネルを表示するために $.ajaxstart() と $.ajaxcomplete() を使用したいのですが、誰かコードを教えてください。

4

1 に答える 1

1

You provide very little information, so I just try to give you another way to deal with it by using the beforeSend and done events to handle your request.

$.ajax({
  url: "demo.html",
  beforeSend: function ( xhr ) {
       // Make your init action of the progress
  }
}).done(function ( data ) {
      // End action of the progress
});

You can find out anything in the jQuery-Documentation here: http://api.jquery.com/jQuery.ajax/ and here http://api.jquery.com/Ajax_Events/

于 2013-01-10T02:41:48.277 に答える