我已经下载了“bootstrap.js”,并将其放入我的 assets/javascript 目录中,并将其放入我的 rails 视图中:
新的.html.erb
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<-- Modal -->
<div class="modal" id="myModal" 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>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
这与 twitter 指南中的代码完全相同。当我重新加载页面时,模式就在那里,并且根本不起作用,当我按下按钮时没有显示动画,模式只是弹出!有什么建议让它发挥作用吗?
我还把这样的 JS 代码放在哪里?
$('#myModal').modal('toggle')