ajaxFileUpload 报错jQuery.handleError is not a function

2019-12-19 14:00:19 浏览数 (1)

今天用ajaxfileupload上传时,引入jq1.9,然后就报了这个错误,百度了下是说在jq1.4之后,这个文件上传插件就没有更新了,handlerError这个函数在1.4之后就废除了,所以可以直接在插件里增加这个函数

代码语言:javascript复制
handleError: function( s, xhr, status, e )      {  
        // If a local callback was specified, fire it  
                if ( s.error ) {  
                    s.error.call( s.context || s, xhr, status, e );  
                }  
  
                // Fire the global callback  
                if ( s.global ) {  
                    (s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );  
                }  
    }

这样就有用了,当然,你也可以把jq版本换下去.

本文为仙士可原创文章,转载无需和我联系,但请注明来自仙士可博客www.php20.cn

  • 上一篇: ajaxfileupload上传文件和报错syntaxerror: Unexpected end of input(…)
  • 下一篇: jq使用splice删除数组元素出错的解决方法

0 人点赞