我被困住了。鉴于 Bootstrap 3.0 即将发布,我决定将其用于一个新项目。到目前为止一切进展顺利,但对于我的生活,我无法弄清楚如何在 Bootstrap 3.0 中进行模态对话框。
有没有人有一个简单的例子?
我被困住了。鉴于 Bootstrap 3.0 即将发布,我决定将其用于一个新项目。到目前为止一切进展顺利,但对于我的生活,我无法弄清楚如何在 Bootstrap 3.0 中进行模态对话框。
有没有人有一个简单的例子?
You could try to build the docs: Compile Twitter bootstrap 3 docs (How to)? so also http://bassjobsen.weblogs.fm/explore-and-install-twitter-bootstrap-3/ from the docs:
<!-- Button trigger modal -->
<a data-toggle="modal" href="#myModal" class="btn btn-primary btn-lg">Launch demo modal</a>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<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">
...
</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 -->
我找到了一个很好的示例,它还可以让您下载包含有关 Booststrap 3 Modal 的所有代码示例的 zip。
我希望这对你也有帮助!
我一直在与同样的问题作斗争,多亏了这次谈话,我发现了我的错误。使用 TwitterBootstrap3 时,您需要以下内容:
按钮触发器
<a data-toggle="modal"
href="#myModal"
class="btn btn-primary btn-lg"
>Launch demo modal</a>
一个具有这种最小结构的 div:
<div class="modal fade"
id="myModal"
tabindex="-1"
role="dialog"
aria-labelledby="myModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<!-- blah blah content here -->
</div>
</div>
</div>
重要的是要知道,如果不放置modal-dialog和model-content,模态窗口将无法正常打开
你可以试试simpleDialog。这是一个带有回调和模板注入选项的简单引导模式。