我想在有
AJAX错误时提醒用户.你可以通过$.ajaxSetup:
$.ajaxSetup({ error: function() { alert("OOPS!") } });
But the jQuery docs recommend against this:
Note: Global callback functions should
be set with their respective global
Ajax event handler
methods-.ajaxStart(),.ajaxStop(),
.ajaxComplete(),.ajaxError(),
.ajaxSuccess(),.ajaxSend()-rather
than within the settings object for
$.ajaxSetup().
所以我想我应该这样做:
$("#some_random_div").ajaxError(function() { alert("OOPS!") });
这对我来说没有意义:AJAX错误回调与我的应用程序整体相关,而不是特定的页面元素.那么为什么回调函数与单个页面元素相关联?