If a remote URL is provided, content will be loaded via jQuery’s load method and injected into the root of the modal element.
<a data-toggle="modal" href="to-another-url-page" data-target="#myModal">Click me !</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 class="te"></div></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 -->
当然,最详细的文档在这里:http://getbootstrap.com/javascript/#modals
Modals中文说明:http://www.w3schools.com/bootstrap/bootstrap_modal.asp
原文:Bootstrap 3 添加外部页面到弹出窗口Bootstrap 3 with remote Modal
本文详细介绍了如何使用jQuery的load方法从提供的远程URL加载内容,并将其注入到模态窗口的根元素中。通过一个具体的示例,展示了如何创建一个带有模态功能的网页元素,以及如何在点击特定链接时触发模态窗口的显示,同时加载并展示来自外部页面的内容。此外,提供了官方文档链接和中文说明,以便进一步深入学习和实践。
603

被折叠的 条评论
为什么被折叠?



