我认为这一切都在标题中。当我开始这个时,我认为这将是一个 5 分钟的代码或谷歌搜索时的快速结果......但现在是三个小时我在这个:
只需显示一个对话框,其中包含“请稍候...”消息,而我正在执行 ajax 调用以检索一些 json 结果,然后显示“结果完成”。
$('#switchOff').live("click",function(){
$('#dialog').dialog({
modal:true,
open: function(){
// I would like to call myAjax function
//From here ?
// While my dialog is showing the Wait message...
},
complete: function(){
//close the dialog when fished
$('#dialog').dialog('close');
},
});
});
function ajaxCall() {
//my ajax call
}