X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fajax.js;h=f401c85380eb2c248de9793032a289ce87f29b5f;hb=a9add215ea64075ed1b512ceb6ac926cb9e5bd76;hp=b0c7f67b85114f314f7044fb6edf9ef5dcf2df50;hpb=6d71a10ed2b751f0e275506b24b82d5f611bfdac;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index b0c7f67..f401c85 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -163,24 +163,24 @@ jQuery.extend({ if ( s.data && s.processData && typeof s.data != "string" ) s.data = jQuery.param(s.data); - // Break the data into one single string - var q = s.url.indexOf("?"); - if ( q > -1 ) { - s.data = (s.data ? s.data + "&" : "") + s.url.slice(q + 1); - s.url = s.url.slice(0, q); - } - // Handle JSONP Parameter Callbacks if ( s.dataType == "jsonp" ) { - if ( !s.data || !s.data.match(jsre) ) + if ( s.type.toLowerCase() == "get" ) { + if ( !s.url.match(jsre) ) + s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?"; + } else if ( !s.data || !s.data.match(jsre) ) s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?"; s.dataType = "json"; } // Build temporary JSONP function - if ( s.dataType == "json" && s.data && s.data.match(jsre) ) { + if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) { jsonp = "jsonp" + jsc++; - s.data = s.data.replace(jsre, "=" + jsonp); + + // Replace the =? sequence both in the query string and the data + if ( s.data ) + s.data = s.data.replace(jsre, "=" + jsonp); + s.url = s.url.replace(jsre, "=" + jsonp); // We need to make sure // that a JSONP style response is executed properly @@ -190,6 +190,7 @@ jQuery.extend({ window[ jsonp ] = function(tmp){ data = tmp; success(); + complete(); // Garbage collect window[ jsonp ] = undefined; try{ delete window[ jsonp ]; } catch(e){} @@ -200,11 +201,11 @@ jQuery.extend({ s.cache = false; if ( s.cache === false && s.type.toLowerCase() == "get" ) - s.data = (s.data ? s.data + "&" : "") + "_=" + (new Date()).getTime(); + s.url += (s.url.match(/\?/) ? "&" : "?") + "_=" + (new Date()).getTime(); // If data is available, append data to url for get requests if ( s.data && s.type.toLowerCase() == "get" ) { - s.url += "?" + s.data; + s.url += (s.url.match(/\?/) ? "&" : "?") + s.data; // IE likes to send both get and post data, prevent this s.data = null;