Twitterブートストラップを使用してモーダル/ダイアログで削除を確認しますか?


284

データベース行に関連付けられた行のHTMLテーブルがあります。各行に「行の削除」リンクが欲しいのですが、事前にユーザーに確認したいと思います。

Twitter Bootstrapモーダルダイアログを使用してこれを行う方法はありますか?



3
この質問に出くわしたので、私はこの問題に対してそのような単純でより合理化された「修正」に(私には思えるものを)取り入れたいと思いました。私はしばらく苦労しましたが、それがいかに簡単かを実感しました。実際のフォーム送信ボタンをモーダルダイアログに配置するだけで、フォーム自体の送信ボタンはダイアログウィンドウを起動するだけです...問題は解決しました。
Michael Doleman

@jonijonesこの例は私にとっては機能しません(最初のボタンをクリックしても確認メッセージは表示されません)-クロムでテスト
egmfrs

回答:


396

レシピをもらう

このタスクでは、すでに利用可能なプラグインとブートストラップ拡張機能を使用できます。または、わずか3行のコードで独自の確認ポップアップを作成することもできます。見てみな。

このリンク(のdata-href代わりに注意href)またはボタンがあり、削除を確認したいとします。

<a href="#" data-href="delete.php?id=23" data-toggle="modal" data-target="#confirm-delete">Delete record #23</a>

<button class="btn btn-default" data-href="/delete.php?id=54" data-toggle="modal" data-target="#confirm-delete">
    Delete record #54
</button>

ここでは#confirm-delete、あなたのHTMLでのモーダルポップアップdiv要素を指します。次のように構成された「OK」ボタンが必要です。

<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                ...
            </div>
            <div class="modal-body">
                ...
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
                <a class="btn btn-danger btn-ok">Delete</a>
            </div>
        </div>
    </div>
</div>

削除アクションを確認できるようにするために必要なのは、この小さなJavaScriptだけです。

$('#confirm-delete').on('show.bs.modal', function(e) {
    $(this).find('.btn-ok').attr('href', $(e.relatedTarget).data('href'));
});

したがって、show.bs.modalイベントの削除ボタンhrefは、対応するレコードIDを持つURLに設定されます。

デモ: http : //plnkr.co/edit/NePR0BQf3VmKtuMmhVR7?p=preview


POSTレシピ

場合によっては、GETではなくPOSTまたはDELETEリクエストを実行する必要がある場合があることを理解しています。それはあまりにも多くのコードなしでまだかなりシンプルです。このアプローチで以下のデモを見てください。

// Bind click to OK button within popup
$('#confirm-delete').on('click', '.btn-ok', function(e) {

  var $modalDiv = $(e.delegateTarget);
  var id = $(this).data('recordId');

  $modalDiv.addClass('loading');
  $.post('/api/record/' + id).then(function() {
     $modalDiv.modal('hide').removeClass('loading');
  });
});

// Bind to modal opening to set necessary data properties to be used to make request
$('#confirm-delete').on('show.bs.modal', function(e) {
  var data = $(e.relatedTarget).data();
  $('.title', this).text(data.recordTitle);
  $('.btn-ok', this).data('recordId', data.recordId);
});

デモ: http : //plnkr.co/edit/V4GUuSueuuxiGr4L9LmG?p=preview


ブートストラップ2.3

これは、Bootstrap 2.3モーダルに関するこの質問に答えていたときに作成したコードのオリジナルバージョンです。

$('#modal').on('show', function() {
    var id = $(this).data('id'),
        removeBtn = $(this).find('.danger');
    removeBtn.attr('href', removeBtn.attr('href').replace(/(&|\?)ref=\d*/, '$1ref=' + id));
});

デモhttp : //jsfiddle.net/MjmVr/1595/


1
これはほぼ完全に機能しますが、(私のサイトのように)フィドルバージョンでも、IDはモーダルの[はい]ボタンに渡されません。?refの代わりに&refを置き換えようとしていることに気付いたので、変更しようとしましたが、まだ機能しません。私はここで何か他のものを逃していますか?これは他の点では素晴らしいので、TIAはあなたの助けを求めます!
SWL 2012年

ありがとう@dfsq-これは美しく機能しました。ダイアログは[いいえ]ボタンをクリックしても非表示にならないので、hrefをモーダル非表示ではなく#に変更すると、同様に機能します。ご協力ありがとうございます。
SWL 2012年

22
微調整の1つは、最終的な削除リクエストの結果がリンクの場合のようなGEtではなく投稿になることです。GETでDeleteを許可すると、悪意のある第三者がサイトやメールに簡単にリンクを作成し、ユーザーが無意識のうちに物を削除してしまう可能性があります。ばかげているように見えるかもしれませんが、これが深刻なセキュリティ問題になるシナリオがあります。
AaronLS 2013年

2
あなたは見てとることをお勧めしますVexのをjsfiddle.net/adamschwartz/hQumpのように、あなたが求めていることをはるかに簡単に行うことができます。
アダム

3
GETを使用して破壊的なアクションを実行することに反対票を投じたくなった。あなたがそれをしてはならない理由はたくさんあります。
NickG

158

http://bootboxjs.com/-最新版はBootstrap 3.0.0で動作します

最も簡単な例:

bootbox.alert("Hello world!"); 

サイトから:

ライブラリは、ネイティブのJavaScript同等物を模倣するように設計された3つのメソッドを公開します。正確なメソッドシグネチャは、ラベルをカスタマイズしてデフォルトを指定するためにさまざまなパラメータを取ることができるため、柔軟ですが、最も一般的には次のように呼び出されます。

bootbox.alert(message, callback)
bootbox.prompt(message, callback)
bootbox.confirm(message, callback)

実際のスニペットを以下に示します(下の[コードスニペットを実行]をクリックしてください)。

$(function() {
  bootbox.alert("Hello world!");
});
<!-- required includes -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>

<!-- bootbox.js at 4.4.0 -->
<script src="https://rawgit.com/makeusabrew/bootbox/f3a04a57877cab071738de558581fbc91812dce9/bootbox.js"></script>


2
残念ながら、タイトルとボタンに英語以外のテキストが必要になったときは、JSを変更するか、ブートストラップのhtmlとJSを自分で追加するのとほぼ同じくらいパラメーター化を開始する必要があります。:)
Johncl

31
  // ---------------------------------------------------------- Generic Confirm  

  function confirm(heading, question, cancelButtonTxt, okButtonTxt, callback) {

    var confirmModal = 
      $('<div class="modal hide fade">' +    
          '<div class="modal-header">' +
            '<a class="close" data-dismiss="modal" >&times;</a>' +
            '<h3>' + heading +'</h3>' +
          '</div>' +

          '<div class="modal-body">' +
            '<p>' + question + '</p>' +
          '</div>' +

          '<div class="modal-footer">' +
            '<a href="#" class="btn" data-dismiss="modal">' + 
              cancelButtonTxt + 
            '</a>' +
            '<a href="#" id="okButton" class="btn btn-primary">' + 
              okButtonTxt + 
            '</a>' +
          '</div>' +
        '</div>');

    confirmModal.find('#okButton').click(function(event) {
      callback();
      confirmModal.modal('hide');
    });

    confirmModal.modal('show');     
  };

  // ---------------------------------------------------------- Confirm Put To Use

  $("i#deleteTransaction").live("click", function(event) {
    // get txn id from current table row
    var id = $(this).data('id');

    var heading = 'Confirm Transaction Delete';
    var question = 'Please confirm that you wish to delete transaction ' + id + '.';
    var cancelButtonTxt = 'Cancel';
    var okButtonTxt = 'Confirm';

    var callback = function() {
      alert('delete confirmed ' + id);
    };

    confirm(heading, question, cancelButtonTxt, okButtonTxt, callback);

  });

1
その古い投稿ですが、同じことをしたいのですが、上記のコードを使用すると、モーダルダイアログが表示されますか?
Saurabh 2015年

28

私はそれが非常に古い質問だと思いますが、今日から、ブートストラップモーダルを処理するより効率的な方法について疑問に思いました。私はいくつかの調査を行い、上に示した解決策よりも良いものを見つけました。それはこのリンクで見つけることができます:

http://www.petefreitag.com/item/809.cfm

最初にjqueryをロードします

$(document).ready(function() {
    $('a[data-confirm]').click(function(ev) {
        var href = $(this).attr('href');

        if (!$('#dataConfirmModal').length) {
            $('body').append('<div id="dataConfirmModal" class="modal" role="dialog" aria-labelledby="dataConfirmLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button><h3 id="dataConfirmLabel">Please Confirm</h3></div><div class="modal-body"></div><div class="modal-footer"><button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button><a class="btn btn-primary" id="dataConfirmOK">OK</a></div></div>');
        } 
        $('#dataConfirmModal').find('.modal-body').text($(this).attr('data-confirm'));
        $('#dataConfirmOK').attr('href', href);
        $('#dataConfirmModal').modal({show:true});
        return false;
    });
});

次に、hrefに質問/確認をしてください:

<a href="/any/url/delete.php?ref=ID" data-confirm="Are you sure you want to delete?">Delete</a>

このように、確認モーダルはより普遍的であり、ウェブサイトの他の部分で簡単に再利用できます。


4
帰属のない他のソースからのコードを投稿しないでください:petefreitag.com/item/809.cfm
A. Webb

4
オペレーションが最初に帰属を忘れていたとしても、これは私にとって完璧なものでした。魅力のように機能します。
Janis Peisenieks 2013

3
GET HTTPリクエストでアイテムを削除するのは良い考えではないと思います
Miguel Prz 2013

7
ママは私に常温核融合のリンクをクリックしないように言った
Mike Purcell

3
@BenYそれは、ユーザーが何かを実行する権限を持っているかどうかではなく、他のサイトやメールなどのリンクをクリックするようにだまされて、何かを実行する権限をすでに持っている悪意のあるユーザーがそのユーザーの権限を利用できるようにすることです。
ブレット

17

@Jousbyのソリューションのおかげで、私もうまく動作するようになりましたが、公式の例で示されているように、正しくレンダリングするには、彼のソリューションのBootstrapモーダルマークアップを少し改善する必要がありました。

だから、これconfirmはうまく機能したジェネリック関数の私の修正バージョンです:

/* Generic Confirm func */
  function confirm(heading, question, cancelButtonTxt, okButtonTxt, callback) {

    var confirmModal = 
      $('<div class="modal fade">' +        
          '<div class="modal-dialog">' +
          '<div class="modal-content">' +
          '<div class="modal-header">' +
            '<a class="close" data-dismiss="modal" >&times;</a>' +
            '<h3>' + heading +'</h3>' +
          '</div>' +

          '<div class="modal-body">' +
            '<p>' + question + '</p>' +
          '</div>' +

          '<div class="modal-footer">' +
            '<a href="#!" class="btn" data-dismiss="modal">' + 
              cancelButtonTxt + 
            '</a>' +
            '<a href="#!" id="okButton" class="btn btn-primary">' + 
              okButtonTxt + 
            '</a>' +
          '</div>' +
          '</div>' +
          '</div>' +
        '</div>');

    confirmModal.find('#okButton').click(function(event) {
      callback();
      confirmModal.modal('hide');
    }); 

    confirmModal.modal('show');    
  };  
/* END Generic Confirm func */

3
ここで素晴らしい解決策。キャンセルリンクのコールバックを処理するために、いくつかの変更を加えました。小さな推奨事項を1つ使用#!ページを上にスクロールしないようにするために、hrefの#の代わりに。
Domenic D.

もし私がこれを二重に投票できるとしたら、私はそうするでしょう。素敵でエレガント。ありがとうございました。
Nigel Johnson

とても良い解決策です。私が提案できるもう1つの改善は、別の引数を追加することです。btnType = "btn-primary"次に、[OK]ボタンのコードをに変更しますclass="btn ' + btnType + '"。そうすれbtn-dangerば、削除のように、オプションの引数を渡して[OK]ボタンの外観を変更できます。
IamNaN 2017

ありがとうございました。これを正しくレンダリングするには、<h3>タグと<a>タグ(h3が先)を入れ替える必要がありました。
Dave Dawkins

10

私はこれが便利で使いやすいことに気づきました、そしてそれはきれいに見えます:http : //maxailloud.github.io/confirm-bootstrap/

これを使用するには、ページに.jsファイルを含めて、次を実行します。

$('your-link-selector').confirmModal();

それに適用できるさまざまなオプションがあり、削除を確認するときにそれをより見栄えよくするために、私は使用します:

$('your-link-selector').confirmModal({
    confirmTitle: 'Please confirm',
    confirmMessage: 'Are you sure you want to delete this?',
    confirmStyle: 'danger',
    confirmOk: '<i class="icon-trash icon-white"></i> Delete',
    confirmCallback: function (target) {
         //perform the deletion here, or leave this option
         //out to just follow link..
    }
});

これは素晴らしい
ライブラリ

4

このタイプのタスクは、bootbox.jsライブラリを使用して簡単に処理できます。最初に、bootbox JSファイルを含める必要があります。次に、イベントハンドラー関数で次のコードを記述します。

    bootbox.confirm("Are you sure to want to delete , function(result) {

    //here result will be true
    // delete process code goes here

    });

公式bootboxjs サイト


2

ソリューションに従うことbootbox.jsよりも優れているので、

  • bootbox.jsが実行できるすべてのことを実行できます。
  • 構文を使用する方が簡単です
  • 「エラー」、「警告」または「情報」を使用してメッセージの色をエレガントに制御できます
  • ブートボックスの長さは986行、私の場合は110行のみ

digimango.messagebox.js

const dialogTemplate = '\
    <div class ="modal" id="digimango_messageBox" role="dialog">\
        <div class ="modal-dialog">\
            <div class ="modal-content">\
                <div class ="modal-body">\
                    <p class ="text-success" id="digimango_messageBoxMessage">Some text in the modal.</p>\
                    <p><textarea id="digimango_messageBoxTextArea" cols="70" rows="5"></textarea></p>\
                </div>\
                <div class ="modal-footer">\
                    <button type="button" class ="btn btn-primary" id="digimango_messageBoxOkButton">OK</button>\
                    <button type="button" class ="btn btn-default" data-dismiss="modal" id="digimango_messageBoxCancelButton">Cancel</button>\
                </div>\
            </div>\
        </div>\
    </div>';


// See the comment inside function digimango_onOkClick(event) {
var digimango_numOfDialogsOpened = 0;


function messageBox(msg, significance, options, actionConfirmedCallback) {
    if ($('#digimango_MessageBoxContainer').length == 0) {
        var iDiv = document.createElement('div');
        iDiv.id = 'digimango_MessageBoxContainer';
        document.getElementsByTagName('body')[0].appendChild(iDiv);
        $("#digimango_MessageBoxContainer").html(dialogTemplate);
    }

    var okButtonName, cancelButtonName, showTextBox, textBoxDefaultText;

    if (options == null) {
        okButtonName = 'OK';
        cancelButtonName = null;
        showTextBox = null;
        textBoxDefaultText = null;
    } else {
        okButtonName = options.okButtonName;
        cancelButtonName = options.cancelButtonName;
        showTextBox = options.showTextBox;
        textBoxDefaultText = options.textBoxDefaultText;
    }

    if (showTextBox == true) {
        if (textBoxDefaultText == null)
            $('#digimango_messageBoxTextArea').val('');
        else
            $('#digimango_messageBoxTextArea').val(textBoxDefaultText);

        $('#digimango_messageBoxTextArea').show();
    }
    else
        $('#digimango_messageBoxTextArea').hide();

    if (okButtonName != null)
        $('#digimango_messageBoxOkButton').html(okButtonName);
    else
        $('#digimango_messageBoxOkButton').html('OK');

    if (cancelButtonName == null)
        $('#digimango_messageBoxCancelButton').hide();
    else {
        $('#digimango_messageBoxCancelButton').show();
        $('#digimango_messageBoxCancelButton').html(cancelButtonName);
    }

    $('#digimango_messageBoxOkButton').unbind('click');
    $('#digimango_messageBoxOkButton').on('click', { callback: actionConfirmedCallback }, digimango_onOkClick);

    $('#digimango_messageBoxCancelButton').unbind('click');
    $('#digimango_messageBoxCancelButton').on('click', digimango_onCancelClick);

    var content = $("#digimango_messageBoxMessage");

    if (significance == 'error')
        content.attr('class', 'text-danger');
    else if (significance == 'warning')
        content.attr('class', 'text-warning');
    else
        content.attr('class', 'text-success');

    content.html(msg);

    if (digimango_numOfDialogsOpened == 0)
        $("#digimango_messageBox").modal();

    digimango_numOfDialogsOpened++;
}

function digimango_onOkClick(event) {
    // JavaScript's nature is unblocking. So the function call in the following line will not block,
    // thus the last line of this function, which is to hide the dialog, is executed before user
    // clicks the "OK" button on the second dialog shown in the callback. Therefore we need to count
    // how many dialogs is currently showing. If we know there is still a dialog being shown, we do
    // not execute the last line in this function.
    if (typeof (event.data.callback) != 'undefined')
        event.data.callback($('#digimango_messageBoxTextArea').val());

    digimango_numOfDialogsOpened--;

    if (digimango_numOfDialogsOpened == 0)
        $('#digimango_messageBox').modal('hide');
}

function digimango_onCancelClick() {
    digimango_numOfDialogsOpened--;

    if (digimango_numOfDialogsOpened == 0)
        $('#digimango_messageBox').modal('hide');
}

digimango.messagebox.jsを使用するには:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>A useful generic message box</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />

    <link rel="stylesheet" type="text/css" href="~/Content/bootstrap.min.css" media="screen" />
    <script src="~/Scripts/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script src="~/Scripts/bootstrap.js" type="text/javascript"></script>
    <script src="~/Scripts/bootbox.js" type="text/javascript"></script>

    <script src="~/Scripts/digimango.messagebox.js" type="text/javascript"></script>


    <script type="text/javascript">
        function testAlert() {
            messageBox('Something went wrong!', 'error');
        }

        function testAlertWithCallback() {
            messageBox('Something went wrong!', 'error', null, function () {
                messageBox('OK clicked.');
            });
        }

        function testConfirm() {
            messageBox('Do you want to proceed?', 'warning', { okButtonName: 'Yes', cancelButtonName: 'No' }, function () {
                messageBox('Are you sure you want to proceed?', 'warning', { okButtonName: 'Yes', cancelButtonName: 'No' });
            });
        }

        function testPrompt() {
            messageBox('How do you feel now?', 'normal', { showTextBox: true }, function (userInput) {
                messageBox('User entered "' + userInput + '".');
            });
        }

        function testPromptWithDefault() {
            messageBox('How do you feel now?', 'normal', { showTextBox: true, textBoxDefaultText: 'I am good!' }, function (userInput) {
                messageBox('User entered "' + userInput + '".');
            });
        }

    </script>
</head>

<body>
    <a href="#" onclick="testAlert();">Test alert</a> <br/>
    <a href="#" onclick="testAlertWithCallback();">Test alert with callback</a> <br />
    <a href="#" onclick="testConfirm();">Test confirm</a> <br/>
    <a href="#" onclick="testPrompt();">Test prompt</a><br />
    <a href="#" onclick="testPromptWithDefault();">Test prompt with default text</a> <br />
</body>

</html>
ここに画像の説明を入力してください


1

コールバック関数を使用して、より再利用可能な私のソリューションを試すことができます。この関数では、POST要求またはいくつかのロジックを使用できます。使用されているライブラリ:JQuery 3>およびBootstrap 3>

https://jsfiddle.net/axnikitenko/gazbyv8v/

テスト用のHTMLコード:

...
<body>
    <a href='#' id="remove-btn-a-id" class="btn btn-default">Test Remove Action</a>
</body>
...

JavaScript:

$(function () {
    function remove() {
        alert('Remove Action Start!');
    }
    // Example of initializing component data
    this.cmpModalRemove = new ModalConfirmationComponent('remove-data', remove,
        'remove-btn-a-id', {
            txtModalHeader: 'Header Text For Remove', txtModalBody: 'Body For Text Remove',
            txtBtnConfirm: 'Confirm', txtBtnCancel: 'Cancel'
        });
    this.cmpModalRemove.initialize();
});

//----------------------------------------------------------------------------------------------------------------------
// COMPONENT SCRIPT
//----------------------------------------------------------------------------------------------------------------------
/**
 * Script processing data for confirmation dialog.
 * Used libraries: JQuery 3> and Bootstrap 3>.
 *
 * @param name unique component name at page scope
 * @param callback function which processing confirm click
 * @param actionBtnId button for open modal dialog
 * @param text localization data, structure:
 *              > txtModalHeader - text at header of modal dialog
 *              > txtModalBody - text at body of modal dialog
 *              > txtBtnConfirm - text at button for confirm action
 *              > txtBtnCancel - text at button for cancel action
 *
 * @constructor
 * @author Aleksey Nikitenko
 */
function ModalConfirmationComponent(name, callback, actionBtnId, text) {
    this.name = name;
    this.callback = callback;
    // Text data
    this.txtModalHeader =   text.txtModalHeader;
    this.txtModalBody =     text.txtModalBody;
    this.txtBtnConfirm =    text.txtBtnConfirm;
    this.txtBtnCancel =     text.txtBtnCancel;
    // Elements
    this.elmActionBtn = $('#' + actionBtnId);
    this.elmModalDiv = undefined;
    this.elmConfirmBtn = undefined;
}

/**
 * Initialize needed data for current component object.
 * Generate html code and assign actions for needed UI
 * elements.
 */
ModalConfirmationComponent.prototype.initialize = function () {
    // Generate modal html and assign with action button
    $('body').append(this.getHtmlModal());
    this.elmActionBtn.attr('data-toggle', 'modal');
    this.elmActionBtn.attr('data-target', '#'+this.getModalDivId());
    // Initialize needed elements
    this.elmModalDiv =  $('#'+this.getModalDivId());
    this.elmConfirmBtn = $('#'+this.getConfirmBtnId());
    // Assign click function for confirm button
    var object = this;
    this.elmConfirmBtn.click(function() {
        object.elmModalDiv.modal('toggle'); // hide modal
        object.callback(); // run callback function
    });
};

//----------------------------------------------------------------------------------------------------------------------
// HTML GENERATORS
//----------------------------------------------------------------------------------------------------------------------
/**
 * Methods needed for get html code of modal div.
 *
 * @returns {string} html code
 */
ModalConfirmationComponent.prototype.getHtmlModal = function () {
    var result = '<div class="modal fade" id="' + this.getModalDivId() + '"';
    result +=' tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">';
    result += '<div class="modal-dialog"><div class="modal-content"><div class="modal-header">';
    result += this.txtModalHeader + '</div><div class="modal-body">' + this.txtModalBody + '</div>';
    result += '<div class="modal-footer">';
    result += '<button type="button" class="btn btn-default" data-dismiss="modal">';
    result += this.txtBtnCancel + '</button>';
    result += '<button id="'+this.getConfirmBtnId()+'" type="button" class="btn btn-danger">';
    result += this.txtBtnConfirm + '</button>';
    return result+'</div></div></div></div>';
};

//----------------------------------------------------------------------------------------------------------------------
// UTILITY
//----------------------------------------------------------------------------------------------------------------------
/**
 * Get id element with name prefix for this component.
 *
 * @returns {string} element id
 */
ModalConfirmationComponent.prototype.getModalDivId = function () {
    return this.name + '-modal-id';
};

/**
 * Get id element with name prefix for this component.
 *
 * @returns {string} element id
 */
ModalConfirmationComponent.prototype.getConfirmBtnId = function () {
    return this.name + '-confirm-btn-id';
};

0

関連する大きなプロジェクトになると、再利用可能なものが必要になる場合があります。これは私がSOの助けを借りてやってきたものです。

confirmDelete.jsp

<!-- Modal Dialog -->
<div class="modal fade" id="confirmDelete" role="dialog" aria-labelledby="confirmDeleteLabel"
 aria-hidden="true">
<div class="modal-dialog">
    <div class="modal-content">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"
                    aria-hidden="true">&times;</button>
            <h4 class="modal-title">Delete Parmanently</h4>
        </div>
        <div class="modal-body" style="height: 75px">
            <p>Are you sure about this ?</p>
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
            <button type="button" class="btn btn-danger" id="confirm-delete-ok">Ok
            </button>
        </div>
    </div>
</div>

<script type="text/javascript">

    var url_for_deletion = "#";
    var success_redirect = window.location.href;

$('#confirmDelete').on('show.bs.modal', function (e) {
    var message = $(e.relatedTarget).attr('data-message');
    $(this).find('.modal-body p').text(message);
    var title = $(e.relatedTarget).attr('data-title');
    $(this).find('.modal-title').text(title);

    if (typeof  $(e.relatedTarget).attr('data-url') != 'undefined') {
        url_for_deletion = $(e.relatedTarget).attr('data-url');
    }
    if (typeof  $(e.relatedTarget).attr('data-success-url') != 'undefined') {
        success_redirect = $(e.relatedTarget).attr('data-success-url');
    }

});

<!-- Form confirm (yes/ok) handler, submits form -->
$('#confirmDelete').find('.modal-footer #confirm-delete-ok').on('click', function () {
    $.ajax({
        method: "delete",
        url: url_for_deletion,
    }).success(function (data) {
        window.location.href = success_redirect;
    }).fail(function (error) {
        console.log(error);
    });
    $('#confirmDelete').modal('hide');
    return false;
});
<script/>

reusingPage.jsp

<a href="#" class="table-link danger"
data-toggle="modal"
data-target="#confirmDelete"
data-title="Delete Something"
data-message="Are you sure you want to inactivate this something?"
data-url="client/32"
id="delete-client-32">
</a>
<!-- jQuery should come before this -->
<%@ include file="../some/path/confirmDelete.jsp" %>

注:これは、削除リクエストにhttp削除メソッドを使用します。JavaScriptから変更するか、data-titleやdata-urlなどのデータ属性を使用して送信して、あらゆるリクエストをサポートできます。


0

最も簡単なショートカットで実行したい場合は、このプラグインを使用して実行できます


しかし、このプラグインはBootstrap Modalを使用した代替実装です。また、実際のBootstrap実装も非常に簡単なので、ページに余分なJSコンテンツを追加し、ページの読み込み時間を遅くするため、このプラグインを使用したくありません。


考え

この方法で自分で実装したい

  1. 場合は、ユーザーのクリックは、リストから項目を削除するには、ボタンのS、そしてJSコールが置かれますアイテムIDモーダルのフォームで(またはそれ以上の重要なデータを)。
  2. 次に、ポップアップに確認用の2つのボタンがあります。

    • はい、フォームを送信します(ajaxまたは直接フォーム送信)
    • いいえ、モーダルを閉じます

コードは次のようになります(Bootstrapを使用)。

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<script>
$(document).ready(function()
{
    $("button").click(function()
    {
        //Say - $('p').get(0).id - this delete item id
        $("#delete_item_id").val( $('p').get(0).id );
        $('#delete_confirmation_modal').modal('show');
    });
});
</script>

<p id="1">This is a item to delete.</p>

<button type="button" class="btn btn-danger">Delete</button>

<!-- Delete Modal content-->

<div class="modal fade" id="delete_confirmation_modal" role="dialog" style="display: none;">
	<div class="modal-dialog" style="margin-top: 260.5px;">
				<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal">×</button>
				<h4 class="modal-title">Do you really want to delete this Category?</h4>
			</div>
			<form role="form" method="post" action="category_delete" id="delete_data">
				<input type="hidden" id="delete_item_id" name="id" value="12">
				<div class="modal-footer">
					<button type="submit" class="btn btn-danger">Yes</button>
					<button type="button" class="btn btn-primary" data-dismiss="modal">No</button>
				</div>
			</form>
		</div>

	</div>
</div>

必要に応じてフォームアクションを変更する必要があります。

ハッピーコーディング:)


0

ターゲットページと再利用可能なブレードファイルへのナビゲーションを備えたPOSTレシピ

dfsqの答えはとてもいいです。私は自分のニーズに合うように少し変更しました。実際にクリックするとユーザーが対応するページに移動する場合のために、モーダルが必要でした。クエリを非同期で実行することは、常に必要なことではありません。

Blade私が使用してファイルを作成しましたresources/views/includes/confirmation_modal.blade.php

<div class="modal fade" id="confirmation-modal" tabindex="-1" role="dialog" aria-labelledby="confirmation-modal-label" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <h4>{{ $headerText }}</h4>
            </div>
            <div class="modal-body">
                {{ $bodyText }}
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
                <form action="" method="POST" style="display:inline">
                    {{ method_field($verb) }}
                    {{ csrf_field() }}
                    <input type="submit" class="btn btn-danger btn-ok" value="{{ $confirmButtonText }}" />
                </form>
            </div>
        </div>
    </div>
</div>

<script>
    $('#confirmation-modal').on('show.bs.modal', function(e) {
        href = $(e.relatedTarget).data('href');

        // change href of button to corresponding target
        $(this).find('form').attr('action', href);
    });
</script>

これを使用するのは簡単です。

<a data-href="{{ route('data.destroy', ['id' => $data->id]) }}" data-toggle="modal" data-target="#confirmation-modal" class="btn btn-sm btn-danger">Remove</a>

ここではあまり変更されず、モーダルは次のように含めることができます。

@include('includes.confirmation_modal', ['headerText' => 'Delete Data?', 'bodyText' => 'Do you really want to delete these data? This operation is irreversible.',
'confirmButtonText' => 'Remove Data', 'verb' => 'DELETE'])

そこに動詞を置くだけで使用します。このように、CSRFも利用されます。

多分それは誰かを助ける。

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