11

Twitter 引导模态不会在模态中加载外部 URL。

示例代码:jsFiddle

<a data-toggle="modal" class="btn" href="http://stackoverflow.com" data-target="#myModal">click me</a>
<div class="modal hide fade" id="myModal" 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">
  </div>
</div>
4

3 回答 3

30

这不起作用,因为您违反了阻止您发送跨域 AJAX 请求的同源策略限制,而这正是引导程序在此处使用的。因此,一种可能性是将外部内容加载到<iframe>

$('a.btn').on('click', function(e) {
    e.preventDefault();
    var url = $(this).attr('href');
    $('.modal-body').html('<iframe width="100%" height="100%" frameborder="0" scrolling="no" allowtransparency="true" src="' + url + '"></iframe>');
});​

请注意,某些网站(例如 google、stackoverflow、facebook、...)无法加载到 iframe 中。他们将X-Frame-Options响应 HTTP 标头设置为SAMEORIGIN并检查它们是否加载到iframe.

你可以在这个小提琴中看到它的作用:http: //jsfiddle.net/f2Fcd/

于 2012-08-28T06:19:10.513 回答
2

试试这个:

<script type="text/javascript" charset="utf-8">
$(function() {
 $('*[data-modal]').click(function(e) {
 e.preventDefault();
 var href = $(e.target).attr('href');
  if (href.indexOf('#') == 0) {
   $(href).modal('show');
  } else {
    $.get(href, function(data) {
    $('<div class="modal">' + data + '</div>').modal('show').appendTo('body');
                        });
                    }
                });
            });
        </script>
于 2012-08-30T12:20:02.840 回答
0

此代码段有助于通过 Ajax 获取模式内容:

$.get(href, function(response) {
     $("#myModal .modal-content").html(response);
});

请记住,response获取的 HTML 必须包含通常存在于“modal-content”元素中的 dom 元素:

 <div class="modal-header">HEADER</div>
 <div class="modal-body">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">Do It</button>
 </div>
于 2014-04-04T11:13:17.157 回答