Bootstrap模态 - 隐藏一个然后显示另一个

时间:2014-08-07 12:25:46

标签: javascript jquery css twitter-bootstrap modal-dialog

我已经使用jQueryUI很长一段时间了,但最近由于审美原因转而使用Bootstrap。我现在正在努力解决我期望的一个简单问题,并想知道其他更熟悉Bootstrap的人是否可以帮助我。

我有一个用于动态创建对话框的通用函数,有时我会显示一个没有按钮的对话框(当处理某些内容时),然后将它交换到一个有按钮的对话框(进程完成 - 单击好的,例如)。我不打算在这里定义一个设置过程,所以我基本上说我希望能够关闭一个对话框并在需要时打开另一个对话框。这就是问题所在。

使用Bootstrap,对话框可以进行动画制作,我喜欢它,并希望保留它。我不想在交换对话框时这样做。我可以通过从显示的第一个对话框中删除类fade,然后从显示之前的第二个对话框中删除它,这样做很有效。然后我将该类添加到第二个对话框,以便它将动画显示出来。但是,当我这样做时动画出错了,并且有一个丑陋的闪光灯,背景div应该轻柔地淡出。

我把一个jsfiddle放在一起来证明这个问题。您可以单击第一个对话框上的关闭按钮,以查看淡出动画应该的样子。

在开始深入研究Bootstrap源文件之前,我们将不胜感激。

http://jsfiddle.net/ArchersFiddle/0302gLav/1/

TL;博士

查看jsfiddle - 单击“显示对话框2” - 单击“确定”。我想在最后摆脱黑色闪光。

CSS

@import url("//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css");
.modal {
    display: none;
}

HTML

<div id="dialog1" class="modal fade">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h4 class="modal-title">Modal Dialog 1</h4>
      </div>
      <div class="modal-body">This is the first modal dialog</div>
      <div class="modal-footer">
        <button type="button" id="dialog-ok" class="btn btn-default">Show dialog 2</button>          
        <button type="button" id="dialog-close" class="btn btn-default" data-dismiss="modal">Close</button>          
      </div>
    </div>
  </div>
</div>

<div id="dialog2" class="modal">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h4 class="modal-title">Modal Dialog 2</h4>
      </div>
      <div class="modal-body">This is the second modal dialog</div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">OK</button>          
      </div>
    </div>
  </div>
</div>

的JavaScript

function showDialog2() {
    $("#dialog1").removeClass("fade").modal("hide");
    $("#dialog2").modal("show").addClass("fade");
}

$("#dialog1").modal("show");

$("#dialog-ok").on("click", function() {
    showDialog2();
});

5 个答案:

答案 0 :(得分:4)

<强>已更新

我为您的最后一个按钮添加了一个click()处理程序,其中添加了一个测试标识id="test",其中对话框和背景逐渐淡出fadeOut()效果。重要的是淡出元素.modal-backdrop,它封装了对话框和背景:

$("#test").on("click", function () {
    $(".modal-backdrop").fadeOut("slow");
});

JsFiddle

答案 1 :(得分:3)

好的,我不想回答我自己的问题,但我有一个100%万无一失的解决方案(据我所知)。我最终找到了一个检查现有对话框并修改它的解决方案,而不是隐藏它并显示一个新对话框。

这是一个工作的jsfiddle(在ajax调用中使用echo,它通常会加载一个html模板)...

http://jsfiddle.net/ArchersFiddle/0302gLav/9/

代码是我正在处理的更大的库的一部分,但无论如何我会在这里发布,因为它可能对其他人有用。

JavaScript库

(function () {

    var _defaultOptions = {
        backdrop: "static",
        close: true,
        keyboard: true
    };

    window.bootstrap = {
        modal: {
            show: function (options) {

                options = $.extend(_defaultOptions, options);

                var buttonText = "";

                for (var key in options.buttons) {

                    options.buttons[key].id = "button_" + key.split(" ").join("");

                    var button = options.buttons[key];

                    buttonText += "<button type=\"button\" " +
                        "id=\"" + button.id + "\" " +
                        "class=\"btn " +
                        (typeof (button.class) == "undefined" ? "btn-default" : button.class) + "\" " +
                        (typeof (button.dismiss) == "undefined" ? "" : "data-dismiss=\"modal\" ") + ">" +
                        key + "</button>";
                }

                $.ajax({
                    url: "templates/bootstrap-modal.html"
                })
                .done(function (data) {
                    data = data
                        .replace("{:Title}", options.title)
                        .replace("{:Body}", options.body)
                        .replace("{:Buttons}", buttonText);

                    var $modal = $("#bootstrap-modal");
                    var existing = $modal.length;

                    if (existing) {
                        $modal.html($(data).find(".modal-dialog"));
                    }
                    else {
                        $modal = $(data).appendTo("body");
                    }

                    for (var key in options.buttons) {
                        var button = options.buttons[key];
                        if (typeof (button.callback) !== undefined) {
                            $("#" + button.id).on("click", button.callback);
                        }
                    }

                    $modal.off("shown.bs.modal").on("shown.bs.modal", function(e) {
                        if (typeof(options.onshow) === "function") {
                            options.onshow(e);
                        }
                    });

                    if (!existing) {
                        $modal.modal(options);
                    }

                    if (options.large === true) {
                        $modal.find(".modal-dialog").addClass("modal-lg");
                    }

                    if (options.close === false) {
                        $modal.find("button.close").remove();
                    }
                });
            },
            hide: function (callback) {
                var $modal = $("#bootstrap-modal");

                if (!$modal.length) return;

                $modal.on("hidden.bs.modal", function(e) {
                    $modal.remove();
                    if (typeof(callback) === "function") {
                        callback(e);
                    }
                });

                $modal.modal("hide");
            }
        }
    };
})();

模板HTML

<div id="bootstrap-modal" class="modal fade">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
        <h4 class="modal-title">{:Title}</h4>
      </div>
      <div class="modal-body">{:Body}</div>
      <div class="modal-footer">
        {:Buttons}
      </div>
    </div>
  </div>
</div>

使用示例:

bootstrap.modal.show({
    title: "Dialog Title",
    body: "<p>This is the dialog body and can contain any old html rubbish.</p>",
    buttons: {
        Close: {
            dismiss: true
        }
    }
});

解释了其他选项

bootstrap.modal.show({
    backdrop: true,                     // show the backdrop
    close: true,                        // show the close button
    keyboard: true,                     // allow the keyboard to close the dialog
    title: "Dialog Title",
    body: "<p>This is the dialog body and can contain any old html rubbish.</p>",
    buttons: {
        Button1: {
            class: "btn-primary",           // any class you want to add to the button
            dismiss: false,                 // does this button close the dialog?
            callback: function() {          // button click handler
                // the button was clicked - do something here
            }
        },
        Button2: {
            // options as defined as above.  You can have as many buttons as you want
        }
    },
    onshow: function(e) {
        // this will trigger when the dialog has completed the show animation
    }
});

bootstrap.modal.hide(function(e) {
    // this will trigger when the dialog has completed the hide animation
});

show()方法中的所有选项都是可选的,但显然您需要标题和正文。

答案 2 :(得分:2)

function showDialog2() {
$("#dialog1").removeClass("fade").modal("hide");
$("#dialog2").addClass("fade").modal("show");

}

你想成为this

答案 3 :(得分:0)

我已经编码了如何在打开另一个模态之前关闭打开的模态。

$('[data-toggle="modal"]').on('click', function() { //On click a button which call a modal
    if(($(".modal").data('bs.modal') || {}).isShown){ //If a modal is shown
        var modal = $(".modal.in"); // Get the current element
        $(modal).modal('hide'); // Hide the current modal
    }
});

希望有所帮助!

答案 4 :(得分:0)

有点晚了,但可能会帮助遇到相同问题的人。

在显示新模式时删除fade类将显示没有fade类的背景。

要进行清晰的过渡,请隐藏当前模态并显示新模态,而不会淡入淡出,而在关闭时会逐渐淡出:

// hide the existing modal, but without fade animation
$("#existing-modal").removeClass("fade").modal("hide");

// show the new modal without fade animation, but enable the fade animation for later
$("#new-modal").removeClass("fade").modal("show").addClass("fade");

// enable fade animation of the backdrop, that was removed for the new modal
$(".modal-backdrop.in").addClass("fade");

(对于最新的Bootstrap版本,请使用$(".modal-backdrop.show").addClass("fade")

具有修复程序的示例:http://jsfiddle.net/bvalentino/f82z1wex/2/