jQuery:req.readyState == 3可能吗?

时间:2008-11-13 15:42:04

标签: jquery ajax

我是jQuery的忠实粉丝,我用它来满足我所有Javascript需求的95%。但是,我是使用COMET方法加载实时页面;在Javascript中我使用AJAX在req.readyState == 3点检索数据。我很好奇是否可以用jQuery $ .ajax执行此操作(我在文档中找不到任何内容)。

1 个答案:

答案 0 :(得分:3)

根据https://coderwall.com/p/gi-f2g/accessing-the-xhr-object-in-jquery-s-ajax

指定
var xhr = $.ajaxSettings.xhr();

//Do what you want with the XHR Object. For Example:

xhr.upload.addEventListener( function( event ) {
//CODE!!!
}, false );

//Store the XHR in a closure.
function xhrProvider() { 
    return xhr;
}

//Then when using $.ajax specifiy a custom xhr like this:
$.ajax( {
    url: 'http://w00wz3rs.com',
    xhr: xhrProvider
} );