gpt4 book ai didi

javascript - 推特 Bootstrap 模式不显示远程图像

转载 作者:数据小太阳 更新时间:2023-10-29 05:19:38 28 4
gpt4 key购买 nike

我正在使用 twitter bootstrap 的模态窗口加载远程图像

<a href="assets/500x300.gif" data-target="#image-preview" data-toggle="modal"><img alt="250x150" src="/assets/250x150.gif"></a>

我是 following these docs

图像未在模态中正确呈现。

我得到的是一堆困惑的数据 -

twitter bootstrap is not great

这是怎么回事?我该如何解决?

最佳答案

是的,我也有这个。我找到的答案是 here .

我创建了一个这样的链接:

<a href="gallery/blue.jpg" class="thumbnail img_modal">

//handler for link
$('.img_modal').on('click', function(e) {
e.preventDefault();
$("#modal_img_target").attr("src", this);
$('#modal').modal('show');
});

//and modal code here

<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Title to go here</h3>
</div>
<div class="modal-body">
<img id="modal_img_target">
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>

关于javascript - 推特 Bootstrap 模式不显示远程图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12694410/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com