我有 2 个功能。First
包含 Jquery-UI 对话框并从Second
函数调用。就像是 :
function First() {
$('div').dialog({
buttons: {
"Ok": function () { /* code */
}
}
});
}
function Second() {
First();
/* rest of this function code is depend upon the "Ok button"
function code */
}
现在我的问题是调用函数后First
脚本的执行不等待dialog's Ok button press
. 我应该怎么做,只有在按下 后Ok button
,控制才从函数返回First
?