我需要在 Dajax 或 Dajaxice 请求中设置 jQuery.ajax() 的等效“异步”设置,以避免在我的 Dajaxice 回调结束之前继续执行脚本。
$(".some_selector").click(
Dajaxice.apps.forum.forum_com(my_js_callback, {'id':$(this).attr("id")});
// More js code here.. Here should not continue before call ends.
谢谢。