Bootstrap模式不起作用

时间:2012-12-19 01:14:33

标签: twitter-bootstrap

我正在尝试使用Bootstrap模式。 我导入了bootstrap-modal.js

我需要使用按钮属性而不是JS来触发模态。

这是我的代码,它不允许模态工作!

<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>

<!-- Modal -->
<div id="myModal" class="modal hide fade" 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>

1 个答案:

答案 0 :(得分:11)

您的代码运行正常。您还应该将Jquery包含在您的页面中。在导入bootstrap.js

之前添加它
<script src="http://code.jquery.com/jquery-latest.js"></script>

另请不要忘记在head部分链接bootstrap css文件。

<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">