您的位置:首页 > Web前端 > jquery > 正文

Uncaught TypeError: jQuery.handleError is not a function

更多 时间:2017-8-31 类别:Web前端 浏览量:1032

Uncaught TypeError: jQuery.handleError is not a function

Uncaught TypeError: jQuery.handleError is not a function

一、原因

插件使用了handleError这个方法,而新版的jQuery已经去除了handleError方法

 

二、解决方法

弃用该插件或者为JQ加回此方法

即在jQuery文件中加入如下代码

 

  • JScript 代码   复制
  • 
    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);
            }
        }
    
    });
    
    			
  •  

    标签:jquery