我有这个 jQuery ajax 调用:
$.ajax({
url : 'my_action',
dataType: 'script',
beforeSend : function(){
if(1 == 1) //just an example
{
return false
}
},
complete: function(){
console.log('DONE');
}
});
beforeSend
如果条件返回true
但返回 false 不会停止 ajax 调用,我想停止ajax 调用。
我怎样才能stop
在 ajax 上调用beforeSend
?
======= 更新 =========
return false
也可以。