Uncaught TypeError: jQuery.handleError is not a function
Uncaught TypeError: jQuery.handleError is not a function一、原因
插件使用了handleError这个方法,而新版的jQuery已经去除了handleError方法
二、解决方法
弃用该插件或者为JQ加回此方法
即在jQuery文件中加入如下代码
jQuery.extend({
handleError: jQuery.handleError || function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error( xhr, status, e );
}
// If we have some XML response text (e.g. from an AJAX call) then log it in the console
else if(xhr.responseText) {
console.log(xhr.responseText);
}
}
});