0

我正在尝试使用 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…&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>
4

1 回答 1

11

您的代码运行良好。您还应该将 Jquery 包含到您的页面中。在导入 bootstrap.js 之前添加这个

<script src="http://code.jquery.com/jquery-latest.js"></script>

也不要忘记在 head 部分链接引导 css 文件。

<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
于 2012-12-19T01:51:34.937 回答