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