今天在用ajaxfileupload时firebug报了一个“ is not a function”的错误。因为在以前使用一直都没有出现过这个问题,我对比以前的项目才发现,在这个项目中使用的jQuery是1.10.2的版本,而以前是使用的1.4.2。度娘一番之后,找到解决办法: is not a function 报错原因是:
handlerError只在jquery-1.4.2之前的版本中存在,jquery-1.4.2之后的版本中都没有这个函数了。
因此在jquery高级版本中将这个函数添加上 ,问题解决。 该js代码段可以加在或者中。
; (function ($) {
({
handleError: function (s, xhr, status, e) {
if () {
( || s, xhr, status, e);
}
if () {
( ? jQuery() : ).trigger("ajaxError", [xhr, s, e]);
}
},
httpData: function (xhr, type, s) {
var ct = ("content-type"),
xml = type == "xml" || !type && ct && ("xml") >= 0,
data = xml ? : ;
if (xml && == "parsererror")
throw "parsererror";
if (s && )
data = (data, type);
if (typeof data === "string") {
if (type == "script")
(data);
if (type == "json")
data = window["eval"]("(" + data + ")");
}
return data;
}
});