我使用Ajax和我用它beforeSend選項。但我想知道如何使用.post的$() beforeSend選項...使用在$。員額()beforeSend選項如何
我的Ajax代碼:
$.ajax({
type: 'POST',
url: url,
data: data,
beforeSend: function() {
//some condition
},
success: function(){},
error: function() {}
});
在$。員額():
$.post(url, data, function())
但是,當添加beforeSend選項
[使用beforeSend並使用$ .post?完成](http://stackoverflow.com/questions/2257975/using-beforesend-and-complete-with-post) – cyfur01