在应用程序中获取实时http请求的信息

时间:2016-09-22 12:46:15

标签: javascript jquery ajax html5

JavaScript中是否有任何方法可以获取有关当前正在进行状态的所有http请求的信息。

1 个答案:

答案 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.');
})