1

通常の JS confirm() の代わりに jQuery UI ベースのモーダル ダイアログを確認に使用する方法はありますか? 私は次のようなことができるようにしたいと思います:

if (jquery_ui_confirm('Are you sure?')) {
    // do something
}

前もって感謝します。

4

3 に答える 3

4
var jqConfirm = function(msg, success) {
    var dialogObj = $("<div style='display:none'>"+msg+"</div>");
    $("body").append(dialogObj);
    $(dialogObj).dialog({
      resizable: false,
      height:140,
      modal: true,
      buttons: {
        "OK": function() {
         success();
          $( this ).dialog( "close" );
        },
        Cancel: function() {
          $( this ).dialog( "close" );
        }
      }
    });
  };

を使用してこの関数を呼び出します

jqConfirm("This will delete all records", function(){ /*do something here */});
于 2013-05-24T10:35:47.250 に答える
0

はい、できます..必要なhtmlをダイアログに提供できます

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

HTMLコード

<div id="dialog-confirm" title="Confirmation Dialog">
    <p>
        <span class="ui-icon ui-icon-alert"
            style="float: left; margin: 0 7px 20px 0;"></span>Would you like to delete this item?
    </p>
</div>
于 2013-05-24T10:34:54.573 に答える
0

Jquery Alert プラグインも使用できます。ここにリンクがあります:http://labs.abeautifulsite.net/archived/jquery-alerts/demo/

于 2013-05-24T10:34:56.860 に答える