4

我使用以下代码通过 jquery ui 对话使用默认 javascript 确认。

jQuery.extend({
    confirm: function(message, title, okAction) {
        jQuery("<div></div>").dialog({
            // Remove the closing 'X' from the dialog
            open: function(event, ui) { jQuery(".ui-dialog-titlebar-close").hide(); }, 
            buttons: {
                "Ok": function() {
                    jQuery(this).dialog("close");
                    return true;
                },
                "Cancel": function() {
                    jQuery(this).dialog("close");
                    return false;
                }
            },
            close: function(event, ui) { jQuery(this).remove(); },
            resizable: false,
            title: title,
            modal: true
        }).text(message);
    }
});

jQuery.confirm(
        "LogOut",
        "Do you want to log out",
        function() { 
        });

现在我需要在注销操作中使用相同的代码。这样我就可以替换代码中的javascript确认。

<a class="homeImage" onclick="return confirm('Do you want to logout?');" href="/future/myhome/head?$event=logout">LOG OUT</a>

我现在面临的问题是,当我用另一个函数替换确认并等待其返回值做出决定时,对话框不会将值返回给变量。这两个函数同时执行(它显示警报,但它也被定向到 href 目标)。有什么方法可以让该方法返回一个真值或假值,从而继续到 href 目标。

参考:jQuery ExtendjQuery UI Replacement for alert
相关问题:js override confirm

4

3 回答 3

4

我不知道您是否真的可以这样做,因为该jQuery.dialog函数是异步的。

您可以使用承诺库来设置按钮单击事件。但是你不能简单地在onclick属性中指定一个方法,而必须通过代码来完成

var d = jQuery.Deferred();
d.resolve(true); // resolve is used then to mark the function as complete
return d.promise(); // return the promise

jsFiddle

jQuery.extend({
    confirm: function(message, title, okAction) {
        var d = jQuery.Deferred();
        jQuery("<div></div>").dialog({
            // Remove the closing 'X' from the dialog
            open: function(event, ui) { jQuery(".ui-dialog-titlebar-close").hide(); }, 
            buttons: {
                "Ok": function() {
                    jQuery(this).dialog("close");
                    d.resolve(true);
                    return true;
                },
                "Cancel": function() {
                    jQuery(this).dialog("close");
                    d.resolve(false);
                    return false;
                }
            },
            close: function(event, ui) { jQuery(this).remove(); },
            resizable: false,
            title: title,
            modal: true
        }).text(message);
        return d.promise();
    }
});

有关 jQuery Promise 库的更多信息,请参阅jQuery 参考



编辑:另一种设置方法:jsFiddle

于 2013-10-15T06:52:41.420 回答
2

问题是默认confirm对话框是同步的并阻止了整个浏览器 UI。JQuery 对话框是异步的,不会阻塞 UI(因为它需要它来呈现)。

因此,您的问题的答案如下。你需要改变:

         buttons: {
            "Ok": function() {
                window.location = "/future/myhome/head?$event=logout"
            },

 <a class="homeImage" onclick="return jQuery.confirm('Do you want to logout?');return false;" href="/future/myhome/head?$event=logout">LOG OUT</a>
于 2013-10-15T06:57:37.917 回答
0

就个人而言,我更多地使用确认来有条件地执行功能或发布表格......

因此,使用您的示例,我会进行以下小的更改:

buttons: {
         "Ok": function() {
              jQuery(this).dialog("close");
              okAction();  
         },

然后调用 Confirm 如下:

onclick="jQuery.confirm('Do you want to logout?','Confirm:',function(){window.location='/future/myhome/head?$event=logout'}); return false;">LOG OUT</a>
于 2014-04-29T03:14:28.087 回答