次のコードで Twitter Bootstrap を使用してモーダル ウィンドウを作成しようとしました
<link rel= "stylesheet" href = "/static/bootstrap/css/bootstrap.css" >
<script src ="/static/bootstrap/js/bootstrap-modal.js" ></script>
<script type = "text/javascript" src= "/static/bootstrap/js/bootstrap.js" ></script>
<script src="/static/js/jquery.js></script>
<div class="modal hide" id="myModal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">Close </a>
<a href="#" class="btn btn-primary"> Save changes </a>
</div>
</div>
<a class="btn" data-toggle="modal" href="#myModal"> Launch Modal </a>
しかし、それでもボタンは 1 つしか表示されません。リンクをクリックしても何も起こらず、モーダル ウィンドウがポップアップしません。私が間違っていることを見つけるのを手伝ってください。PS私は今それを学び始めました。私のエラーがどこにあるのか教えていただければ、それは素晴らしいことです。