我的页面上有一个带有图像链接的网格。单击其中一个时,模式应该会弹出图像,但格式较大。
现在我试图在不使用 javascript/jquery 的情况下实现这一点,而只使用数据属性。
目前我有这个代码:
<!-- Generating the image link with PHP (laravel) -->
<a data-toggle="modal" href="#myModal"> {{ HTML::image("img/$photo->Link", "$photo->Title", array("class"=>"thumbnail col-md-3")) }} </a>
<!--The modal -->
<section class="row">
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title text-center">HEADER</h4>
</div>
<div class="modal-body">
<p> BODY </p>
</div>
<div class="modal-footer">
<p>My Footer</p>
</div>
</div>
</div>
</div>
</section>
是否可以在不使用 javascript 的情况下仅使用数据属性来实现这一点?
我正在为 Bootstrap 3 插件使用Twitter Bootstrap Modal和Lightbox
编辑:
<div class="imgLink col-md-3">
<a data-toggle="lightbox">
<img src="../img/5.jpg" class="thumbnail">
</a>
</div>
当然我已经添加了灯箱插件的脚本,当点击这个时我没有远程访问怎么回事?