gpt4 book ai didi

jquery - Jquery UI 对话框的问题

转载 作者:行者123 更新时间:2023-12-01 06:07:18 25 4
gpt4 key购买 nike

Jquery UI 对话框不会等到我给出输入。我期望该功能类似于 Javascript 提示。我有这样的要求:如果文件名为空,则打开一个对话框,以便用户可以填写详细信息并继续保存,但执行不会等到我给出输入。

//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 对话框来实现我的要求

最佳答案

您应该使用 jQuery alert插件。

例如:

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

关于jquery - Jquery UI 对话框的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4421662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com