Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在通过 jQuery 发送 AJAX 请求之前,我需要做一些(可能是异步的)事情。有没有办法手动唤起在 jqXHR 对象上发送请求?问题是我需要立即返回 jqXHR 对象(例如使用 $.Deferred() 接口)
你可以beforeSend在 jQuery 中使用事件
beforeSend
$.ajax({ url: "url", beforeSend: function ( xhr ) { // you can do here } }).done(function ( data ) { ............. });
看这里