Background: Using jquery.fileupload.js plug-in http://www.jq22.com/jquery-in...
When uploading files, under Firefox and Chrome, the return value can be obtained normally in the callback function done, as shown below
#The callback function code is as follows:
done: function (e, data) {
console.info(data);
},
However, in versions below IE10, in the returned data, the result is not an ajax result, but a jquery object, as shown below:
I still don’t understand the logic of the source code, please give me some advice