我遇到了twitter的bootstrap-modal javascript问题。
我只是在他们的页面上使用相同的代码
<!-- sample modal content -->
<div id="modal-from-dom" class="modal hide fade">
<div class="modal-header">
<a href="#" class="close">×</a>
<h3>Modal Heading</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn primary">Primary</a>
<a href="#" class="btn secondary">Secondary</a>
</div>
</div>
然后
<button data-controls-modal="modal-from-dom" data-backdrop="true"
data-keyboard="true" class="btn primary">Launch</button>
当然,当我点击我的启动按钮时,没有任何反应。我应该在script.js文件中添加一些内容吗?
在我的标题中,我正在加载jquery,bootstrap和其他一些东西。我的代码应该运行,还是有什么我没做错的?
thx任何答案
答案 0 :(得分:1)
你是这样初始化的吗?
$('#modal-from-dom').modal(options)