1

与えられた例からまったく同じコードをコピーしました:

<-- 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…&lt;/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がありません。彼らのサイトのライブ デモは、このようには動作しません。何か不足していますか?

4

1 に答える 1

6

hideクラスをモーダルに追加します。

更新B3では、モーダルが完全に刷新されました。このクラスは必要ありません。

それでも表示される場合は、HTMLで正しい構文を使用していることを確認してください。デフォルトでは非表示になっているはずです。

于 2012-10-03T18:24:58.423 に答える