单击图像时,我正在使用SimpleModal创建弹出视图。该视图将包含更大版本的图像以及该图像的其他一些填充数据。
问题是我对文档有点困惑,而且我对 jQuery/JS 还很陌生。
我假设我们正在创建一个隐藏的 div,其中包含我们想要在索引页面上弹出的所有信息。
布局/application.html.erb
<head>
<script>
$(document).ready(function() {
$('.photo_container').click(function(e){
$('#basic_modal').modal();
});
});
</script>
</head>
照片/index.html.erb
<% @photos.each do |photo| %>
<div class="photo_container">
<%= image_tag photo.url %>
</div>
<% end %>
<div id="basic_modal">
<p>This is the sample pop up page that will display a bigger image and info.</p>
</div>
当我单击图像时,如何使模式弹出?
编辑:我尝试将脚本移到结束正文标记之前。