<div id="freewall" class="freewall">
<g:each in="${list}" var="image">
<div class="brick">
<div class="grid-tile">
<a class="overlay" href="/more/${image.id}" data-toggle="modal" data-target="#detailModal">
<img src="${image.referralImage}" width="100%" />
</a>
</div>
<div class="info">
<p class="title">${image.tags}</p>
<p class="owner">by ${image.description}</p>
</div>
</div>
</g:each>
</div>
<div id="detailModal" class="modal hide mod pure-g t-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
</div>
使用引導程序與動態圖像及其詳細信息。單擊時不顯示引導程序彈出窗口
起初,我用
$('#detailModal').modal('show');
的問題是,當頁面加載時,將detailModal當它不應該出現。
$('#detailModal').modal('hide');
$('.grid-tile a').on('click', function(){
$('#detailModal').modal('show');
});
頁面加載時,不顯示detailModal。但是當我點擊網格圖塊上的圖像彈出細節時,它不會執行任何操作,這意味着根本沒有彈出窗口。
我無法找到我可以忽略或出錯的地方。幫助讚賞!
我已經在我發佈求助之前做到了。它沒有工作 – kittymeows