根据文档,“错误”ajax 事件通过 XMLHttpRequest 对象,“成功”没有。
http://docs.jquery.com/Ajax/jQuery.ajax
真可惜,因为我希望能够成功访问 HTTP 状态代码。我这样做是成功的,但有错误。
error: function(data){
alert(data.status)
}
任何线索都会很棒。
谢谢你。
根据文档,“错误”ajax 事件通过 XMLHttpRequest 对象,“成功”没有。
http://docs.jquery.com/Ajax/jQuery.ajax
真可惜,因为我希望能够成功访问 HTTP 状态代码。我这样做是成功的,但有错误。
error: function(data){
alert(data.status)
}
任何线索都会很棒。
谢谢你。
在这种情况下,您将寻找complete()回调,该回调在成功后发生:
// A function to be called when the request finishes
// (after success and error callbacks are executed).
// The function gets passed two arguments: The
// XMLHttpRequest object and a string describing the
// type of success of the request. This is an Ajax Event.
complete: function (XMLHttpRequest, textStatus) {
this; // the options for this ajax request
}