Bootstrap:Twitter Bootstrap Modal在页面加载时不会隐藏

时间:2012-10-03 18:14:18

标签: javascript twitter-bootstrap modal-dialog

我从给出的例子中复制了完全相同的代码:

<-- Button to trigger modal -->
<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>

http://twitter.github.com/bootstrap/javascript.html#modals

当页面首次加载时,模态立即出现。我没有javascript来触发它。他们网站上的现场演示不是这样的。什么遗失?

1 个答案:

答案 0 :(得分:6)

hide课程添加到您的模态中。

更新在B3中,模式已完全修改。你不应该需要这门课。

如果仍然显示,请确保您在HTML中使用正确的语法。它应该默认隐藏。