ChatGPT解决这个技术问题 Extra ChatGPT

Twitter 引导远程模式每次都显示相同的内容

我正在使用 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.example/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.example/item/1" data-target="#modal-item" data-toggle="modal">Edit 1</a>
<a href="http://www.website.example/item/2" data-target="#modal-item" data-toggle="modal">Edit 2</a>
<a href="http://www.website.example/item/3" data-target="#modal-item" data-toggle="modal">Edit 2</a>

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

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

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

相同的修复,但针对 Bootstrap 3 进行了修改。Bootstrap 3 引入了命名空间。 plnkr.co/edit/HWSgSw?p=preview
请注意,remote Modals are deprecated as of Bootstrap v3.2.1 和将在 v4 中消失。

S
Stephen Ostermiller

问题有两个方面。

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

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

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

第二,Modal插件被设计为在Modal对象的构造函数中加载远程资源,这很遗憾意味着即使对options.remote进行了更改, 它永远不会被重新加载

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

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

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

普朗克

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


@VladimirStarkov 对此感到抱歉-似乎我忘记了模态框上的 hide 类,因此,如果您的窗口太小,则模态框可能会阻止按钮上的鼠标事件。出于某种原因,JSFiddle.net 今天早上真的很糟糕(尝试更新 504),所以我只是在 plnkr.co 上重新编写了示例,无论如何这对 AJAX 来说更好。
还有另一个问题: .modal-body 中仍然会有文本,所以我添加了: $('#myModal .modal-body').text("Loading...")在隐藏的事件监听器中
$(this).removeData('bs.modal') 中的 bs.modal 使用 Bootstrap 3 为我工作
Boostrap 3 的完整工作代码是 $('body').on('hidden.bs.modal', '.modal', function () { $(this).removeData('bs.modal'); });
我还将检查是否从远程源加载了被隐藏的模态,以免破坏具有静态内容的模态:var modalData = $(this).data('bs.modal'); if (modalData && modalData.options.remote)...
C
Camilo Nova

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

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

我的英雄。喜欢这些未记录的更改。
这有很大帮助。 Bootstrap 3 不向后兼容,SO(或其他论坛)上的大部分内容都是关于 BS < 3,尝试这些解决方案确实浪费了很多时间。
不完美:它在新内容之前简要显示旧内容。
如果您想使用上面的示例清空模式,您应该能够在 remoteData 行之前或之后添加以下内容:$(this).empty()
您不应使用 $(this).empty()remote 选项将远程数据加载到嵌套的 <div class="modal-content"> 元素中。请改用 $('.modal-content', this).empty();
s
shivam

对于 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();
});

在远程页面上确保您没有加载引导程序或 jquery 库。它会杀死任何引用并让您空出一个空模态。
这对我不起作用。这是我的工作代码: $(document).on("hidden.bs.modal", ".modal", function (e) { if (!$(e.target).is(".local-modal ")) { $(e.target).removeData("bs.modal").find(".modal-content").empty(); } });
当我使用 $(e.target).removeData("bs.modal").find(".modal-content").empty(); 时,就像我的模态以某种方式被隐藏了,只出现了灰色叠加层。
B
Bienvenido David

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

$('#modal-item').on('hidden', function() {
    $(this).removeData('modal');
});

J
James Ward

接受的答案对我不起作用,所以我用 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")})
    })
})

D
Dave Sag

这适用于 Bootstrap 3 仅供参考

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

S
Sean Toru

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

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

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

$ ("#myModal").removeData ('modal');
$ ('#myModal').modal ({remote : 'path_to_remote'});

s
shivam

在 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');
});

在 Bootstrap 3.1 中,3.2 解决方案是唯一适合我的方法 - 使用 body 方法,我在 modal 上的一些事件变得未挂钩。
u
user2763645

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

$("div[id$='modal']").on('hidden.bs.modal',
    function () {
        $(this).removeData('bs.modal');
    }
);

O
Orkun Tuzel

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

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

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


这是 BS 3.3.6 唯一对我有用的东西。也使用车把模板。我建议使用文档而不是正文。
w
webstr

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


C
Ciprian Mihalache

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

$.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});

M
Mau GM

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

$('#myModal').on('hidden.bs.modal', function () {
   $('#myModal').removeData('bs.modal');
   $('#myModal').find('.modal-content').html('');
});

这是迄今为止我找到的最简单的工作答案。答案并不复杂,代码几行且易于解释。第一次完美地处理它。
D
DevAntoine

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

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');
    });
};

S
Stanton

对于 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() 以及删除数据来防止任何不需要的旧模态内容闪现。


S
Shawn Ang
        $('#myModal').on('hidden.bs.modal', function () {
            $(this).removeData('modal');
        });

这个对我有用。


R
Rhys Stephens

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

$("#myModal").on("show.bs.modal", function(e) {
    var link = $(e.relatedTarget);
    $(this).find(".modal-body").load(link.attr("href"));
});

N
Nikolay Kostov
$('body').on('hidden.bs.modal', '.modal', function () {
       $("#mention Id here what you showed inside modal body").empty()
});

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


d
dewaz

这个对我有用:

模态的

<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>

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


W
Wojtek Kruszewski

@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


A
Abudayah

在 Bootstrap 版本 3.3.2 上测试

  $('#myModal').on('hide.bs.modal', function() {
    $(this).removeData();
  });

这是一个糟糕的解决方案。不带参数调用 .removeData() 将告诉 jquery 删除附加到该元素的所有数据。就 OP 的问题而言,.removeData('bs.modal').removeData('modal') 就足够了,而且非常安全。
I
Ibrahim Khan

祝你好运:

$('#myModal').on('hidden.bs.modal', function () {
    location.reload();
});

这是没用的。重新加载页面不是解决方案。