JavaScript中是否有任何方法可以获取有关当前正在进行状态的所有http请求的信息。
答案 0 :(得分:0)
使用jQuery,您可以使用 Ajax事件API
.ajaxSend() http://api.jquery.com/ajaxsend/
.ajaxComplete() http://api.jquery.com/ajaxcomplete/
jQuery Ajax事件的完整列表: https://api.jquery.com/Ajax_Events/
示例:
$(document).ajaxSend(function(){
alert('Sending an Ajax request.');
})