📜  所有 ajaxcomplete 事件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:21.533000             🧑  作者: Mango

代码示例1
//when document load and complete all ajax response this event will fire only one time
$(document).ajaxStop(function(){
  alert("All AJAX requests completed");
});