1 回答

動(dòng)漫人物
TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超10個(gè)贊
handlerError只在jquery-1.4.2之前的版本中存在,jquery-1.6 和1.7中都沒有這個(gè)函數(shù)了,因此在1.4.2中將這個(gè)函數(shù)復(fù)制到了form.js中
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] );
}
},
添加回答
舉報(bào)
0/150
提交
取消