我有一個與id="<%= p.id %>"
(在模式中的帖子的ID)的模態。我想在模式打開的時候使用模式的內容(並且我需要在.js文件中執行此操作)。但是,我怎樣才能從打開的模態id到JavaScript?如何從開放引導模式獲得'id'?
我已經嘗試使用JavaScript代碼,但它不起作用。有什麼建議麼?
_singlePost.html.erb
<a class="fg" href="#<%= p.id %>" data-toggle="modal">
<div id="withJosefin">
<%= p.title %>
</div>
</a>
<div id="<%= p.id %>" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<p><h3 id="myModalLabel"><%= p.title %></h3></p>
</div>
<div class="modal-body">
<%= raw(p.link) %>
</div>
</div>
pages.js.coffee
$ ->
if ('div.modal.hide.in').is(":visible")
currentId = $('.modal.fade.in').attr('id')
//Do something with currentId here
我看不出有任何的jQuery代碼在這裏 –
@roasted - 它與jQuery coffeecrap撒! – adeneo
@adeneo我不知道,thx的輸入! –