タイトルに全てが込められていると思います。私がこれを始めたとき、私はそれが5分のコードか、グーグルのときの迅速な結果になると思っていました...しかし、今では3時間です。
json の結果を取得するために ajax 呼び出しを実行しているときに、"Please Wait..." メッセージを含むダイアログを表示し、"Result complete" を表示します。
$('#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
}