はいまたはいいえjQueryを使用したボックスの確認


121

[OK] / [キャンセル]ボタンの代わりにjQueryを使用して[はい] / [いいえ]のアラートが必要です。

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

他の選択肢はありますか?



jQuery UIを見てください:jqueryui.com/demos/dialog/#modal-confirmation
jAndy


3
$ .alerts.okButton = 'はい'; $ .alerts.cancelButton = 'いいえ'; jConfirm( 'Are you sure ??'、 ''、function(r){if(r == true){// Ok button
press

2
以下を返す、confirm()関数に似た別のJQueryダイアログソリューション:stackoverflow.com/a/18474005/1876355これがお役に立てば幸い
Pierre

回答:


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 2012年

@Thulasiramプラグインをyii2フレームワークに追加するにはどうすればよいですか?
ファイサル

113

alertメソッドは、ユーザーが閉じるまで実行をブロックします。

確認機能を使用します。

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

3
confirm「はい、いいえ」ではなく「OKキャンセル」です。
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
});

MY CHANGES 私が代わりに呼び出すように上記微調整している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();
          }
        }
    });

私が行ったもう1つの変更は、ThulasiRamが彼の回答で行ったように、doConfirm関数内にconfirmBox divを作成することでした。


0

[OK]ボタンと[キャンセル]ボタンに翻訳を適用する必要がありました。動的テキストを除くようにコードを変更しました(翻訳関数を呼び出します)


$.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
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.