13

残念ながら、ドキュメント ブートボックス ( http://paynedigital.com/2011/11/bootbox-js-alert-confirm-dialogs-for-twitter-bootstrap ) は、確認ダイアログを呼び出す方法を教えていません。ドキュメント ウィンドウにあるように、ページが読み込まれると常に表示されますが、削除ボタンをクリックして呼び出されたときに何が問題なのかが表示されるはずです。これは失敗したコードです。

// show "false" does not work, the confirm window is showing when page is loaded.
$(function () {
bootbox.confirm("Confirm delete?", "No", "Yes", function(result) {
show: false
});     
});

// need show the confirm window when the user click in a button, how to call the confirm window?

<td><a class="icon-trash" onclick="bootbox.confirm();" href="{% url 'del_setor' setor.id %}" title="Delete"></a></td>

削除ボタンがクリックされたときにのみこのブートボックスが表示されるように設定するにはどうすればよいですか? ありがとう!

編集 -解決策:

$(function () {
$("a#confirm").click(function(e) {
    e.preventDefault();
    var location = $(this).attr('href');
    bootbox.confirm("Confirm exclusion?", "No", "Yes", function(confirmed) {
        if(confirmed) {
        window.location.replace(location);
        }
    });
});     
});

これで、「はい」をクリックすると削除が機能します。プラグインの開発者にドキュメントに完全なサンプルを入れるように依頼したので、ユーザーは「はい」をクリックしたときにオブジェクトを削除する方法について投稿を作成する必要がありません。よろしく。

4

4 に答える 4

3

私もそれが必要でしたが、いくつか変更しました... 見てください...

次のように、この関数をグローバルな「jQuery Ready」関数に追加します。

$(document).on("click", "[data-toggle=\"confirm\"]", function (e) {
    e.preventDefault();
    var lHref = $(this).attr('href');
    var lText = this.attributes.getNamedItem("data-title") ? this.attributes.getNamedItem("data-title").value : "Are you sure?"; // If data-title is not set use default text
    bootbox.confirm(lText, function (confirmed) {
        if (confirmed) {
            //window.location.replace(lHref); // similar behavior as an HTTP redirect (DOESN'T increment browser history)
            window.location.href = lHref; // similar behavior as clicking on a link (Increments browser history)
        }
    });
});

ボタンやリンクに「data-* 属性」を次のように追加するだけです。

<a class="btn btn-xs btn-default" data-toggle="confirm" data-title="Do you really want to delete the record 123?" href="/Controller/Delete/123"><span class="fa fa-remove"></span> </a>

だから...このようにして、パーソナライズされた質問をすることができます..これは、ユーザーにとってはるかに直感的です...

気に入った?!

デモを見る: jsfiddle

于 2014-11-19T15:14:21.017 に答える
0
$(document).on("click", ".confirm-modal", function(e) {
    e.preventDefault();
    bootbox.confirm("Are You sure?", function(result) {
        if(result) {
            top.location.href = e.target.href;
        }
    });
});
于 2014-10-28T11:54:45.173 に答える