264

我正在使用 Twitter 引导程序,我指定了一个模式

<div class="modal hide" id="modal-item">

    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">x</button>
        <h3>Update Item</h3>
    </div>

    <form action="http://www.website.com/update" method="POST" class="form-horizontal">

    <div class="modal-body">
        Loading content...
    </div>

    <div class="modal-footer">
        <a href="#" class="btn" data-dismiss="modal">Close</a>
        <button class="btn btn-primary" type="submit">Update Item</button>
    </div>

    </form>

</div>

和链接

<a href="http://www.website.com/item/1" data-target="#modal-item" data-toggle="modal">Edit 1</a>
<a href="http://www.website.com/item/2" data-target="#modal-item" data-toggle="modal">Edit 2</a>
<a href="http://www.website.com/item/3" data-target="#modal-item" data-toggle="modal">Edit 2</a>

当我第一次单击这些链接中的任何一个时,我会看到正确的内容,但是当我单击其他链接时,它会显示第一次加载的相同内容,它不会更新内容。

我希望它每次点击时都会更新。

PS:我可以通过自定义 jQuery 函数轻松地使其工作,但我想知道它是否可以使用本机 Bootstrap 模态远程函数,因为它应该很容易,我想我只是让事情复杂化。

4

22 回答 22

446

问题有两个方面。

首先,一旦一个 Modal 对象被实例化,它就会持久地附加到由指定的元素data-target和随后的调用中,以表明 modal 只会调用toggle()它,但不会更新options. 因此,即使href您的不同链接上的属性不同,当切换模式时,for 的值remote也不会更新。对于大多数选项,可以通过直接编辑对象来解决这个问题。例如:

$('#myModal').data('bs.modal').options.remote = "http://website.com/item/7";

但是,这在这种情况下不起作用,因为...

其次,Modal 插件被设计为在 Modal 对象的构造函数中加载远程资源,不幸的是,这意味着即使对 进行了更改options.remote也永远不会重新加载

一个简单的补救措施是在后续切换之前销毁 Modal 对象。一种选择是在它完成隐藏后将其销毁:

$('body').on('hidden.bs.modal', '.modal', function () {
  $(this).removeData('bs.modal');
});

注意:根据需要调整选择器。这是最一般的。

普朗克

或者你可以尝试想出一个更复杂的方案来做一些事情,比如检查启动模式的链接是否与前一个不同。如果是,则销毁;如果不是,则无需重新加载。

于 2012-09-05T17:58:21.100 回答
171

对于引导程序 3,您应该使用:

$('body').on('hidden.bs.modal', '.modal', function () {
    $(this).removeData('bs.modal');
});
于 2013-08-08T19:04:57.637 回答
50

对于 Bootstrap 3.1,您需要删除数据并清空modal-content而不是整个对话框 (3.0),以避免在等待远程内容加载时出现闪烁。

$(document).on("hidden.bs.modal", function (e) {
    $(e.target).removeData("bs.modal").find(".modal-content").empty();
});

如果您使用的是非远程模式,那么上面的代码当然会在关闭后删除它们的内容(坏的)。您可能需要向这些模式(如.local-modal类)添加一些东西,以免它们受到影响。然后将上面的代码修改为:

$(document).on("hidden.bs.modal", ".modal:not(.local-modal)", function (e) {
    $(e.target).removeData("bs.modal").find(".modal-content").empty();
});
于 2014-02-26T19:42:43.220 回答
30

谢谢梅尔夫。我开始对 boostrap.js 进行修补,但您的回答是一个快速而干净的解决方法。这是我最终在我的代码中使用的内容。

$('#modal-item').on('hidden', function() {
    $(this).removeData('modal');
});
于 2012-09-20T01:28:46.023 回答
21

接受的答案对我不起作用,所以我用 JavaScript 去做。

<a href="/foo" class="modal-link">
<a href="/bar" class="modal-link">

<script>
$(function() {
    $(".modal-link").click(function(event) {
        event.preventDefault()
        $('#myModal').removeData("modal")
        $('#myModal').modal({remote: $(this).attr("href")})
    })
})
于 2012-10-21T15:15:59.363 回答
14

这适用于 Bootstrap 3 仅供参考

$('#myModal').on('hidden.bs.modal', function () {
  $(this).removeData('bs.modal');
});
于 2013-09-09T05:24:58.500 回答
7

我的项目是在 Yii 中构建的并且使用 Bootstrap-Yii 插件,所以这个答案只有在你使用 Yii 时才有意义。

上述修复确实有效,但仅在第一次显示模态之后。第一次出来是空的。我认为这是因为在我启动代码之后 Yii 调用了模式的隐藏函数,从而清除了我的启动变量。

我发现将 removeData 调用放在启动模态的代码之前就可以了。所以我的代码结构是这样的......

$ ("#myModal").removeData ('modal');
$ ('#myModal').modal ({remote : 'path_to_remote'});
于 2012-10-10T10:12:19.450 回答
5

在 Bootstrap 3.2.0 中,“on”事件必须在文档上,并且您必须清空模式:

$(document).on("hidden.bs.modal", function (e) {
    $(e.target).removeData("bs.modal").find(".modal-content").empty();
});

在 Bootstrap 3.1.0 中,“on”事件可以在 body 上:

$('body').on('hidden.bs.modal', '.modal', function () {
    $(this).removeData('bs.modal');
});
于 2014-08-09T16:24:30.830 回答
3

为什么不使用 BS 3 使其更通用?只需使用“[something]modal”作为模态 DIV 的 ID。

$("div[id$='modal']").on('hidden.bs.modal',
    function () {
        $(this).removeData('bs.modal');
    }
);
于 2013-09-10T05:27:55.837 回答
2

对我来说唯一的工作选择是:

$('body').on('hidden.bs.modal', '#modalBox', function () {
    $(this).remove();
});

我使用 Bootstrap 3,并且我有一个名为的函数 popup('popup content') ,它附加了模态框 html。

于 2015-07-06T12:41:00.980 回答
1

添加 $(this).html(''); 也可以清除可见数据,并且效果很好

于 2013-09-12T22:33:52.997 回答
1

如果提供了远程 URL,内容将通过 jQuery 的load方法加载一次并注入到 .modal-content div 中。如果您使用的是 data-api,您也可以使用 href 属性来指定远程源。这方面的一个例子如下所示

$.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});
于 2014-03-24T07:35:59.280 回答
1

我添加了类似的内容,因为旧内容会一直显示,直到新内容出现,.modal-content 中的 .html('') 将清除里面的 HTML,希望对您有所帮助

$('#myModal').on('hidden.bs.modal', function () {
   $('#myModal').removeData('bs.modal');
   $('#myModal').find('.modal-content').html('');
});
于 2015-09-23T18:30:05.473 回答
0

我写了一个简单的片段来处理模态的刷新。基本上它将被点击的链接存储在模态数据中,并检查它是否与被点击的链接相同,删除或不是模态数据。

var handleModal = function()
{
    $('.triggeringLink').click(function(event) {
        var $logsModal = $('#logsModal');
        var $triggeringLink = $logsModal.data('triggeringLink');

        event.preventDefault();

        if ($logsModal.data('modal') != undefined
            && $triggeringLink != undefined
            && !$triggeringLink.is($(this))
        ) {
            $logsModal.removeData('modal');
        }

        $logsModal.data('triggeringLink', $(this));

        $logsModal.modal({ remote: $(this).attr('href') });
        $logsModal.modal('show');
    });
};
于 2013-08-01T12:44:14.900 回答
0

对于 Bootstrap 3,在 modal.js 我改变了:

$(document)
  .on('show.bs.modal',  '.modal', function () { $(document.body).addClass('modal-open') })
  .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open'); })

$(document)
  .on('show.bs.modal',  '.modal', function () { $(document.body).addClass('modal-open') })
  .on('hidden.bs.modal', '.modal', function () { 
    $(this).removeData('bs.modal').empty()
    $(document.body).removeClass('modal-open')
  })

(为清楚起见添加了额外的间距)

这可以通过在模态容器上调用 empty() 以及删除数据来防止任何不需要的旧模态内容闪现。

于 2013-12-10T20:49:38.247 回答
0
        $('#myModal').on('hidden.bs.modal', function () {
            $(this).removeData('modal');
        });

这个对我有用。

于 2014-06-18T10:12:42.843 回答
0

这种另一种方法对我很有效:

$("#myModal").on("show.bs.modal", function(e) {
    var link = $(e.relatedTarget);
    $(this).find(".modal-body").load(link.attr("href"));
});
于 2015-03-05T23:36:41.540 回答
0
$('body').on('hidden.bs.modal', '.modal', function () {
       $("#mention Id here what you showed inside modal body").empty()
});

你想清空哪个 html 元素(div,span 不管)。

于 2015-06-24T05:19:04.483 回答
0

这个对我有用:

模态的

<div class="modal fade" id="searchKaryawan" tabindex="-1" role="dialog" aria-labelledby="SearchKaryawanLabel" aria-hidden="true"> <div class="modal-dialog">
<div class="modal-content">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
    <h4 class="modal-title" id="SearchKaryawanLabel">Cari Karyawan</h4>
  </div>
  <div class="modal-body">
    <input type="hidden" name="location">
    <input name="cariNama" type="text" class="form-control" onkeyup="if (this.value.length > 3) cariNikNama();" />
    <div class="links-area" id="links-area"></div>
  </div>
  <div class="modal-footer">
  </div>
</div> </div></div>

脚本

<script type="text/javascript">$('body').on('hidden.bs.modal', '.modal', function () {  $(".links-area").empty() }); </script>

链接区域是我放置数据并需要清除的区域

于 2016-01-26T09:50:43.503 回答
0

@merv 接受的答案的扩展版本。它还检查是否从远程源加载了被隐藏的模式并清除旧内容以防止其闪烁。

$(document).on('hidden.bs.modal', '.modal', function () {
  var modalData = $(this).data('bs.modal');

  // Destroy modal if has remote source – don't want to destroy modals with static content.
  if (modalData && modalData.options.remote) {
    // Destroy component. Next time new component is created and loads fresh content
    $(this).removeData('bs.modal');
    // Also clear loaded content, otherwise it would flash before new one is loaded.
    $(this).find(".modal-content").empty();
  }
});

https://gist.github.com/WojtekKruszewski/ae86d7fb59879715ae1e6dd623f743c5

于 2016-03-31T14:04:25.123 回答
-1

在 Bootstrap 版本 3.3.2 上测试

  $('#myModal').on('hide.bs.modal', function() {
    $(this).removeData();
  });
于 2015-02-16T09:24:44.343 回答
-4

祝你好运:

$('#myModal').on('hidden.bs.modal', function () {
    location.reload();
});
于 2016-02-17T15:36:05.857 回答