Jquery UI对话框出现问题

时间:2010-12-12 12:37:05

标签: jquery jquery-ui jquery-ui-dialog

Jquery UI对话框表格不会等到我提供输入。我希望功能像Javascript提示。我有一个要求,如果filename为空打开一个对话框,用户可以填写详细信息并继续保存,但执行不会等到我给出输入。

//code steps

if(testcasefilename==""){

open a dialog, enter details, get the details on click of OK button, assign it to filename
}

//use the filename and proceed to saving.

saveForm(filename){

}

//code

编辑:我正在使用带有下拉菜单和文本输入的jquery UI模式对话框确认http://jqueryui.com/demos/dialog/#modal-confirmation,以便用户可以选择下拉列表,提供文本值。我们的要求不允许我们使用jconifrm或javascript提示符。请告诉我有没有办法使用Jquery UI对话框

来实现我的要求

1 个答案:

答案 0 :(得分:0)

您应该使用jQuery alert插件。

例如:

if(testcasefilename==""){
  jConfirm('Enter a file name', 'Confirmation Dialog', function(r) {
    saveForm(r);
});
}