jquery ui 对话框是否支持从另一个对话框(并在其上)启动一个对话框

发布于 2024-11-09 15:27:26 字数 239 浏览 3 评论 0原文

我有一个 jquery ui 对话框,用户在其中填写一堆用户输入,然后提交。其中一个字段变得越来越复杂,并且具有高级详细信息视图,因此我不想在对话框上显示所有详细信息,而是想显示一个按钮,该按钮将在第一个对话框顶部弹出另一个 jquery ui 对话框,其中包含一组迷你用户输入。

jquery ui 对话框支持这个吗?

i have a jquery ui dialog where a user fills out a bunch of user inputs and then submits. One of the fields is getting more complicated and has an advanced detail view so instead of showing all of the detail on the dialog, i want to show a button that will popup another jquery ui dialog on top of the first dialog with a mini set of user inputs.

is this supported in jquery ui dialog ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气称霸 2024-11-16 15:27:26

是的,你可以..

我有一个 JSFiddle 可以做到这一点。检查一下。

http://jsfiddle.net/79JWB/1/

yes you can..

i have a JSFiddle for this. check that out.

http://jsfiddle.net/79JWB/1/

回忆凄美了谁 2024-11-16 15:27:26

是的,可以这样做,请致电您的

新的 ui daliog

表单中按钮的

$('#buttonid').click(function(){

    $( "#dialog-confirm" ).dialog({
        resizable: false,
        height:140,
        modal: true,
        buttons: {
            "ok": function() {
                //function
            },
            Cancel: function() {
                $( this ).dialog( "close" );
            }
        }
    })

   });

yes this can be done , call your

new ui daliog

from your button in the form .

$('#buttonid').click(function(){

    $( "#dialog-confirm" ).dialog({
        resizable: false,
        height:140,
        modal: true,
        buttons: {
            "ok": function() {
                //function
            },
            Cancel: function() {
                $( this ).dialog( "close" );
            }
        }
    })

   });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文