我从未使用过Twitter Bootstrap 3我必须在我的HTML页面中使用Modal。当点击一个按钮时,应该使用模态。我想使用Modal.No CSS中的最少代码和来自twitter bootstrap的排版。任何人请帮助如何获得与Modal相关的jquery插件?
答案 0 :(得分:0)
按照http://getbootstrap.com/javascript/#modals
的说明为了更好地理解,你可以看到我的小提琴here。我使用jQuery和bootstrap-modal.js而没有其他的CSS和排版。
首先,创建一个模态div结构,并在页面加载时隐藏它,无论是使用自己的CSS还是jquery
<!-- 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" id="myModalLabel">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>
</div>
</div>
用一段jQuery隐藏它
$('.modal').hide();
然后按下按钮切换模态的可见性