带有远程模态的Bootstrap 3

时间:2013-08-22 11:07:21

标签: twitter-bootstrap modal-dialog

我刚刚开始使用新的Twitter Bootstrap发布新项目:bootstrap 3。 我不能让Modal在远程模式下工作。我只是希望当我点击一个链接时,它会显示带有远程网址内容的模态。 它有效,但模态布局完全被破坏。

以下是jsfiddle的链接:http://jsfiddle.net/NUCgp/5/

代码:

<a data-toggle="modal" href="http://fiddle.jshell.net/Sherbrow/bHmRB/0/show/" 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">&times;</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 -->

有人能让这个简单的例子有效吗?

9 个答案:

答案 0 :(得分:108)

关于模态的远程选项,来自the docs

  

如果提供了远程URL,则将通过jQuery的加载来加载内容   方法并将注入模态元素的根

这意味着你的远程文件应该提供完整的模态结构,而不仅仅是你想在主体上显示的内容。

Bootstrap 3.1更新:

在v3.1中,上述行为已更改,现在远程内容已加载到.modal-content

请参阅 Demo fiddle

Boostrap 3.3更新:

  

此选项自v3.3.0起已弃用,并已在v4中删除。我们建议您使用客户端模板或数据绑定框架,或自己调用jQuery.load

答案 1 :(得分:28)

对于Bootstrap 3

我必须处理的工作流程是使用可能会更改的网址上下文加载内容。因此,默认情况下,使用javascript设置模态,或者为要显示的默认上下文设置href:

$('#myModal').modal({
        show: false,
        remote: 'some/context'
});

摧毁模态对我不起作用,因为我没有从同一个遥控器加载,因此我不得不:

$(".some-action-class").on('click', function () {
        $('#myModal').removeData('bs.modal');
        $('#myModal').modal({remote: 'some/new/context?p=' + $(this).attr('buttonAttr') });
        $('#myModal').modal('show');
});

这当然很容易被重构成一个js库,并为你提供了很多加载模态的灵活性

我希望这能节省15分钟的修补时间。

答案 2 :(得分:18)

如果你不想发送完整的模态结构,你可以复制旧的行为,做这样的事情:

// this is just an example, remember to adapt the selectors to your code!
$('.modal-link').click(function(e) {
    var modal = $('#modal'), modalBody = $('#modal .modal-body');

    modal
        .on('show.bs.modal', function () {
            modalBody.load(e.currentTarget.href)
        })
        .modal();
    e.preventDefault();
});

答案 3 :(得分:14)

这是我的解决方案(利用上面的一些),它利用BS3自己的结构来重新设置旧的远程加载行为。它应该是无缝的。

我将保持代码变量的重量和描述性以使事情易于理解。 我也假设存在JQuery。 Javascript heavy lifter类型将轻松简化代码。

这里的参考是一个调用BS3模态的链接:

<li><a data-toggle="modal" href="terms.html" data-target="#terms">Terms of Use</a></li>

在您的Javascript中,您将需要以下内容。

// Make sure the DOM elements are loaded and accounted for
$(document).ready(function() {

  // Match to Bootstraps data-toggle for the modal
  // and attach an onclick event handler
  $('a[data-toggle="modal"]').on('click', function(e) {

    // From the clicked element, get the data-target arrtibute
    // which BS3 uses to determine the target modal
    var target_modal = $(e.currentTarget).data('target');
    // also get the remote content's URL
    var remote_content = e.currentTarget.href;

    // Find the target modal in the DOM
    var modal = $(target_modal);
    // Find the modal's <div class="modal-body"> so we can populate it
    var modalBody = $(target_modal + ' .modal-body');

    // Capture BS3's show.bs.modal which is fires
    // immediately when, you guessed it, the show instance method
    // for the modal is called
    modal.on('show.bs.modal', function () {
            // use your remote content URL to load the modal body
            modalBody.load(remote_content);
        }).modal();
        // and show the modal

    // Now return a false (negating the link action) to prevent Bootstrap's JS 3.1.1
    // from throwing a 'preventDefault' error due to us overriding the anchor usage.
    return false;
  });
});

我们就在那里。您可能想要做的一件事是将模态体设置为最大高度,以便长内容滚动。

在CSS中,您需要以下内容:

.modal-body{
    max-height: 300px;
    overflow-y: scroll;
}

仅仅为了参考,我将包含模态的HTML,这是你见过的每个Bootsrap模态示例的结果:

<div id="terms" class="modal fade">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h3 id="termsLabel" class="modal-title">TERMS AND CONDITIONS</h3>
      </div>
      <div class="modal-body">
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

答案 4 :(得分:9)

我这样做了:

$('#myModal').on 'shown.bs.modal', (e) ->  
  $(e.target).find('.modal-body').load('http://yourserver.com/content')

答案 5 :(得分:8)

尽管我不喜欢修改Bootstrap代码(使升级更加困难),你可以简单地将“.find('。modal-body')添加到modal.js中的load语句中,如下所示:

// original code
// if (this.options.remote) this.$element.load(this.options.remote)

// modified code
if (this.options.remote) this.$element.find('.modal-body').load(this.options.remote)

答案 6 :(得分:5)

这是我使用的方法。它不需要页面上任何隐藏的DOM元素,只需要一个带有模态partial的href的锚标记,以及一个&#39; modalTrigger&#39;类。当模态关闭(隐藏)时,它将从DOM中删除。

  (function(){
        // Create jQuery body object
        var $body = $('body'),

        // Use a tags with 'class="modalTrigger"' as the triggers
        $modalTriggers = $('a.modalTrigger'),

        // Trigger event handler
        openModal = function(evt) {
              var $trigger = $(this),                  // Trigger jQuery object

              modalPath = $trigger.attr('href'),       // Modal path is href of trigger

              $newModal,                               // Declare modal variable

              removeModal = function(evt) {            // Remove modal handler
                    $newModal.off('hidden.bs.modal');  // Turn off 'hide' event
                    $newModal.remove();                // Remove modal from DOM
              },

              showModal = function(data) {             // Ajax complete event handler
                    $body.append(data);                // Add to DOM
                    $newModal = $('.modal').last();    // Modal jQuery object
                    $newModal.modal('show');           // Showtime!
                    $newModal.on('hidden.bs.modal',removeModal); // Remove modal from DOM on hide
              };

              $.get(modalPath,showModal);             // Ajax request

              evt.preventDefault();                   // Prevent default a tag behavior
        };

        $modalTriggers.on('click',openModal);         // Add event handlers
  }());

要使用,只需使用模态部分的href创建一个标记:

<a href="path/to/modal-partial.html" class="modalTrigger">Open Modal</a>

答案 7 :(得分:4)

另一个简单明了的方法是在你的布局中设置一个模态,并在必要时调用它。

JS

  var remote_modal = function(url) {
    // reset modal body with a spinner or empty content
    spinner = "<div class='text-center'><i class='fa fa-spinner fa-spin fa-5x fa-fw'></i></div>"

    $("#remote-modal .modal-body").html(spinner)
    $("#remote-modal .modal-body").load(url);
    $("#remote-modal").modal("show");
  }

和你的HTML

 <div class='modal fade' id='remote-modal'>
    <div class='modal-dialog modal-lg'>
      <div class='modal-content'>
        <div class='modal-body'></div>
        <div class='modal-footer'>
          <button class='btn btn-default'>Close</button>
        </div>
      </div>
    </div>
  </div>
</body>

现在您可以简单地调用remote_modal('/my/url.html'),内容将显示在模态

答案 8 :(得分:0)

我是这样做的:

<!-- global template loaded in all pages // -->
     <div id="NewsModal" class="modal fade" tabindex="-1" role="dialog" data-ajaxload="true" aria-labelledby="newsLabel" 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>
                        <h3 class="newsLabel"></h3>
                    </div>
                    <div class="modal-body">
                            <div class="loading">
                                <span class="caption">Loading...</span>
                               <img src="/images/loading.gif" alt="loading">
                        </div>
                    </div>
                    <div class="modal-footer caption">
                        <button class="btn btn-right default modal-close" data-dismiss="modal">Close</button>
                    </div>
                </div>
            </div>
        </div>

这是我的href:

<a href="#NewsModal" onclick="remote=\'modal_newsfeed.php?USER='.trim($USER).'&FUNCTION='.trim(urlencode($FUNCTIONCODE)).'&PATH_INSTANCE='.$PATH_INSTANCE.'&ALL=ALL\'
                                        remote_target=\'#NewsModal .modal-body\'" role="button" data-toggle="modal">See All Notifications <i class="m-icon-swapright m-icon-dark"></i></a>