我正在构建一个维基百科查看器,我在我的代码中有这个:
$(document).ready(function() {
$(document).on('click', '#search_button', function() {
addWikiResults();
});
$(document).keypress(function(enter) {
if(enter.which == 13)
addWikiResults();
});
$(document).ajaxStop(function() {
alert('ajax stop now working');
});
});
ajaxStop根本不会和ajaxStart一起发射。一切都有效,除了那部分。这是我的代码:https://codepen.io/nuclearmachine/pen/xdXXKv?editors=1000
特别是line 130
答案 0 :(得分:2)
无论全局值如何,都不会为跨域脚本或JSONP请求触发全局事件。
http://api.jquery.com/category/ajax/global-ajax-event-handlers/