2

我在使用 Rails 上的引导程序以模式加载新页面时遇到了一些问题。

这是我的 eventos/index.html.erb 的重要部分

<div id="content">        
  <% @eventos.each do |evento| %>
  <!--Bar 2-->
  <div class="mosaic-block bar2">
  **<%= link_to(evento, :class=>"mosaic-overlay", :id => "evento" , "data-toggle" =>     "modal", 'data-target' => '#eventoModal') do %>**
    <div class="details">
      <h4><%= evento.local %> - <%= evento.data.to_time.strftime('%e/%m') %></h4>
      <h4>Mais+</h4>
    </div>
    <%end%>
  <div class="mosaic-backdrop"><%= image_tag evento.attachment.url(:small) %></div>
  </div>
 <% end %>

如您所见,我的“evento”有一个link_to(呈现的html:

a href="/eventos/1" class="mosaic-overlay" data-target="#eventoModal" data-toggle="modal" id="evento"

但是当我点击链接时,什么也没有发生(在添加它正在工作的模式之前)

这里是 evento/show.html.erb

<div class="modal" id="eventoModal">
     <p>Some code</p>
</div>

最后在我的 assets/javascripts/eventos.js.coffe 我有这个:

$('#eventoModal').modal(options)

任何人都可以帮我在 eventto/index.html.erb 页面上以模式显示 eventto/show.html.erb 吗?

4

1 回答 1

0

我认为你的 jQuery 选择器是错误的

$('#eventoModal').modal(options)

应该

$('#evento').modal(options)
于 2013-06-04T19:18:02.940 回答