0

我在进行这项工作时遇到问题。我正在使用 JQuery 2.0 ...

我试过了,但在ajaxStart对象上出现异常错误。

$.ajax({
   //Scripts here...
}).ajaxStart(function() { 
   animationStart();  // Display the busy animation...
}).ajaxStop(function() {
   animationStop();  // Hide the busy animation...
});
4

2 回答 2

2

请参阅文档

从 jQuery 1.8 开始,该.ajaxStart()方法只能附加到document.

$(document).ajaxStart(animationStart).ajaxStop(animationStop);
于 2013-09-13T20:41:37.127 回答
0

除了 Jason P 所说的那样,这样做有什么问题?

animationStart();

$.ajax({
   ..................
   done: function() {
       animationStop();
   }
});
于 2013-09-13T20:42:17.193 回答