ASP.Net中的JQuery确认对话框

时间:2013-01-23 02:00:56

标签: jquery asp.net

是否有任何由Jquery制作的确认对话框,我可以在ASP.NEt中使用它?

确认对话框中有“是”或“否”,“确定”,“确定”或“取消”按钮?

例如,如果单击“确定”按钮,我可以在ASP.net的服务器代码中执行一个条件。

对话框中的另一个示例:“您要将此记录保存到数据库吗?” “是”或“否”

2 个答案:

答案 0 :(得分:1)

使用jQuery UI Dialog

$(element).dialog({
    buttons : {
        Yes : function () {
            $.ajax({...});
        },
        No : function () {
            $(this).dialog('close');
        }
    }
});

答案 1 :(得分:1)

           jQuery("#send").click(function () {
            $("#dialog").dialog({
                modal: true, title: 'message', zIndex: 10000, autoOpen: true,
                width: 'auto', resizable: false,
                buttons: {
                    Yes: function () {
                        window.location = '<%=demo\test\data%>?ID=' + Id;
                        $(this).dialog("close");
                    },
                    No: function () {
                        $(this).dialog("close");
                    }
                },
                close: function (event, ui) {
                    $(this).remove();
                }
            });
        });


        $("#cancelSend").click(function () {
            window.location.href = "javascript:history.back();";
        });
    });

这就是我正在做的......但它是一个MVC应用程序。但我相信你可以用同样的方式为任何asp.net应用程序.... url是您的方法或服务器页面的链接,ID是您要传递的任何查询字符串。 这个逻辑在yes函数里面,所以只会执行yes按钮点击..