function ajax(){
$.ajax({
..
..
success:function(response){
}
});
}
$('button').click(function(){
ajax() <-- if success do after this
});
$('.button2').click(function(){
ajax() <-- if success do after this
});
我有很少的元素需要运行ajax函数,但我怎么能做回调?因为ajax是异步的,所以我不能在函数之后运行。