mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixes the parameters given to load callback when the request errors.
This commit is contained in:
parent
d3e034f6c7
commit
9cb1ab436d
17
src/ajax.js
17
src/ajax.js
@ -167,7 +167,8 @@ jQuery.fn.extend({
|
||||
|
||||
var selector, type,
|
||||
self = this,
|
||||
off = url.indexOf(" ");
|
||||
off = url.indexOf(" "),
|
||||
response;
|
||||
|
||||
if ( off >= 0 ) {
|
||||
selector = url.slice( off, url.length );
|
||||
@ -193,9 +194,17 @@ jQuery.fn.extend({
|
||||
// if "type" variable is undefined, then "GET" method will be used
|
||||
type: type,
|
||||
dataType: "html",
|
||||
data: params
|
||||
data: params,
|
||||
complete: function( jqXHR, status ) {
|
||||
if ( callback ) {
|
||||
self.each( callback, [ status === "success" ? response : jqXHR.responseText, status, jqXHR ] );
|
||||
}
|
||||
}
|
||||
}).done(function( responseText ) {
|
||||
|
||||
// Save response text for use in complete callback
|
||||
response = responseText;
|
||||
|
||||
// See if a selector was specified
|
||||
self.html( selector ?
|
||||
|
||||
@ -212,10 +221,6 @@ jQuery.fn.extend({
|
||||
// If not, just inject the full result
|
||||
responseText );
|
||||
|
||||
}).always(function() {
|
||||
if ( callback ) {
|
||||
self.each( callback, arguments );
|
||||
}
|
||||
});
|
||||
|
||||
return this;
|
||||
|
Loading…
Reference in New Issue
Block a user