Twitter BootstrapのJavascript ドキュメントには、次の例が示されています。
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
ただし、何も表示されません。Chrome 開発者ツールは、div
エンクロージングが 1140px x 0px を占めることになっていることを示しています。fade
また、クラスを削除しようとしましたが、役に立ちませんでした。
これまでのところ、他のコンポーネントのテストに問題はありませんでした。次のように、テストにCDNを使用していると言う必要があります。
<!-- at the end of HEAD -->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<!-- at the end of BODY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js">/script>
この崩壊の原因は何ですか?