在 documentation of jQuery AJAX Events 中,所有示例都使用 jQuery DOM 元素来声明这样的绑定(bind):
$('.log').ajaxSend( hander );
我想捕获 jQuery AJAX 事件,而无需使用 DOM 元素来附加它们,如下所示:
$.ajaxSend( function( event, jqXHR, ajaxOptions ){
console.log( "ajaxSend" );
console.log( "ajaxSend.event", event );
console.log( "ajaxSend.jqXHR", jqXHR );
console.log( "ajaxSend.ajaxOptions", ajaxOptions );
});
但它看起来不起作用:
Uncaught TypeError: Object function (a,b){return new e.fn.init(a,b,h)} has no method 'ajaxSend'
有什么建议吗?
最佳答案
您可以使用 document
:
$(document).ajaxSend( hander );
关于javascript - 没有 DOM 元素的 jQuery 绑定(bind) AJAX 事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11672410/