是或否使用jQuery确认框


121

我想要使​​用jQuery的是/否警报,而不是“确定/取消”按钮:

jQuery.alerts.okButton = 'Yes';
jQuery.alerts.cancelButton = 'No';                  
jConfirm('Are you sure??',  '', function(r) {
    if (r == true) {                    
        //Ok button pressed...
    }  
}

还有其他选择吗?



有一个看看jQuery用户界面jqueryui.com/demos/dialog/#modal-confirmation
jAndy


3
$ .alerts.okButton ='是'; $ .alerts.cancelButton ='否'; jConfirm('Are you sure ??','',function(r){if(r == true){//按下确定按钮...}}
Sushanth CS 2012年

2
另一个JQuery Dialog解决方案更像是Confirm()函数,该返回的函数为:stackoverflow.com/a/18474005/1876355希望这会
Pierre

Answers:


129

ConfirmDialog('Are you sure');

function ConfirmDialog(message) {
  $('<div></div>').appendTo('body')
    .html('<div><h6>' + message + '?</h6></div>')
    .dialog({
      modal: true,
      title: 'Delete message',
      zIndex: 10000,
      autoOpen: true,
      width: 'auto',
      resizable: false,
      buttons: {
        Yes: function() {
          // $(obj).removeAttr('onclick');                                
          // $(obj).parents('.Parent').remove();

          $('body').append('<h1>Confirm Dialog Result: <i>Yes</i></h1>');

          $(this).dialog("close");
        },
        No: function() {
          $('body').append('<h1>Confirm Dialog Result: <i>No</i></h1>');

          $(this).dialog("close");
        }
      },
      close: function(event, ui) {
        $(this).remove();
      }
    });
};
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>


2
这是jQuery UI还是普通的旧jQuery?我在jQuery文档中的任何地方都看不到.dialog()。
chovy

11
您需要在页面中包含jquery和jquery ui脚本。
图拉西兰

@Thulasiram如何在yii2框架中添加插件?
Faisal

113

警报方法将阻止执行,直到用户将其关闭:

使用确认功能:

if (confirm('Some message')) {
    alert('Thanks for confirming');
} else {
    alert('Why did you press cancel? You should have confirmed');
}

3
confirm不过是“ OK CANCEL”,不是“ YES NO”。
KlaymenDK

57

我使用了以下代码:

HTML:

<a id="delete-button">Delete</a>

jQuery的:

<script>
$("#delete-button").click(function(){
    if(confirm("Are you sure you want to delete this?")){
        $("#delete-button").attr("href", "query.php?ACTION=delete&ID='1'");
    }
    else{
        return false;
    }
});
</script>

这些代码对我有用,但我不确定这是否正确。你怎么看?


3
这对我if(confirm("Are you sure you want to return this meter?")){ return true; } else{ return false; }
有用

更短的时间return confirm("Are you sure you want to return this meter?")))
ПавелЗорин


12

我见过的所有示例都不能重复用于不同的“是/否”类型的问题。我一直在寻找可以指定回调的内容,以便在任何情况下都可以调用。

以下对我来说很好:

$.extend({ confirm: function (title, message, yesText, yesCallback) {
    $("<div></div>").dialog( {
        buttons: [{
            text: yesText,
            click: function() {
                yesCallback();
                $( this ).remove();
            }
        },
        {
            text: "Cancel",
            click: function() {
                $( this ).remove();
            }
        }
        ],
        close: function (event, ui) { $(this).remove(); },
        resizable: false,
        title: title,
        modal: true
    }).text(message).parent().addClass("alert");
}
});

然后我这样称呼它:

var deleteOk = function() {
    uploadFile.del(fileid, function() {alert("Deleted")})
};

$.confirm(
    "CONFIRM", //title
    "Delete " + filename + "?", //message
    "Delete", //button text
    deleteOk //"yes" callback
);

4

我在从对话框中找回答案时遇到了麻烦,但最终通过将其他问题的答案组合在一起提出了一个解决方案-是和没有按钮,而不能确定并取消确认-框模态确认对话框带有部分代码的框

这是另一个问题的建议:

创建自己的确认框:

<div id="confirmBox">
    <div class="message"></div>
    <span class="yes">Yes</span>
    <span class="no">No</span>
</div>

创建自己的confirm()方法:

function doConfirm(msg, yesFn, noFn)
{
    var confirmBox = $("#confirmBox");
    confirmBox.find(".message").text(msg);
    confirmBox.find(".yes,.no").unbind().click(function()
    {
        confirmBox.hide();
    });
    confirmBox.find(".yes").click(yesFn);
    confirmBox.find(".no").click(noFn);
    confirmBox.show();
}

通过您的代码调用它:

doConfirm("Are you sure?", function yes()
{
    form.submit();
}, function no()
{
    // do nothing
});

我的更改 我已经对上面的内容进行了调整,以便 像这样confirmBox.show() 使用而不是调用confirmBox.dialog({...})

confirmBox.dialog
    ({
      autoOpen: true,
      modal: true,
      buttons:
        {
          'Yes': function () {
            $(this).dialog('close');
            $(this).find(".yes").click();
          },
          'No': function () {
            $(this).dialog('close');
            $(this).find(".no").click();
          }
        }
    });

我所做的另一个更改是在doConfirm函数中创建ConfirmBox div,就像ThulasiRam在他的回答中所做的那样。


0

我需要对“确定”和“取消”按钮应用翻译。我将代码修改为动态文本之外的代码(调用了我的翻译功能)


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


0

试试看...这很简单,只需使用“确定”对话框使用YES | NO发出警报。

if(confirm(“您要升级吗?”)){您的代码}


-3

您可以重复使用您的确认:

    function doConfirm(body, $_nombrefuncion)
    {   var param = undefined;
        var $confirm = $("<div id='confirm' class='hide'></div>").dialog({
            autoOpen: false,
            buttons: {
                Yes: function() {
                param = true;
                $_nombrefuncion(param);
                $(this).dialog('close');
            },
                No: function() {
                param = false;
                $_nombrefuncion(param);
                $(this).dialog('close');
            }
                                    }
        });
        $confirm.html("<h3>"+body+"<h3>");
        $confirm.dialog('open');                                     
    };

// for this form just u must change or create a new function for to reuse the confirm
    function resultadoconfirmresetVTyBFD(param){
        $fecha = $("#asigfecha").val();
        if(param ==true){
              // DO THE CONFIRM
        }
    }

//Now just u must call the function doConfirm
    doConfirm('body message',resultadoconfirmresetVTyBFD);

2
请使用正确的英语,避免使用诸如“ u”的缩写。另外,最好能稍微解释一下代码来说明和教育OP,以及为什么认为自己的答案比以前发布的任何答案都要好。
Davidmh,2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.