我正在使用bootstrap-lightbox来显示页面中的某些图像。
<a href="#lightbox" class="thumbnail">
<img src="/img/img1_thumb.png" />
</a>
<a href="#lightbox" class="thumbnail">
<img src="/img/img2_thumb.png" />
</a>
<div id="lightbox" ...>
<div class='lightbox-header'>
<button type="button" class="close" ...>×</button>
</div>
<div class='lightbox-content'>
<img src="/img/img1.png" />
</div>
</div>
我只需要显示被点击的缩略图的完整版本。
有没有lightbox
办法在打开模态之前更新lightbox-content
s ?img
或者我应该添加类似的内容:
$('.thumbnail').click(function () {
$('#lightbox .lightbox-content img')
.attr('src', $(this).attr('data-imagefull'));
});
?
更新
我不想自动生成完整的图像路径。
我只是不知道在哪里指定这个完整的图像路径。