引导3与远程模态引导3与远程模态(Bootstrap 3 with remote Modal)

2019-05-08 18:34发布

我刚开始使用新的Twitter的引导发布一个新项目:自举3,我不能让莫代尔工作在远程模式。 我只是想,当我点击一个链接,它显示了远程URL的内容的模式。 它的工作原理,但语气布局完全被破坏。

这里是一个的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 -->

任何人都可以做这个简单的例子工作?

Answer 1:

关于对情态动词的远程选项,从该文档 :

如果提供了一个远程URL,内容将通过jQuery的负载方法被加载并注入模态元件的根部

这意味着您的远程文件应提供完整的模态结构,要显示对身体没有什么。

引导3.1更新:

在v3.1中上面的行为改变现在的远程内容加载到.modal-content

看到这个演示小提琴

自举3.3更新:

自从3.3.0此选项已被弃用,在V4已被删除。 我们建议使用客户端模板或数据绑定框架,或致电jQuery.load自己。



Answer 2:

自举3

工作流我不得不处理被加载内容有可能会改变一个URL上下文。 因此,通过默认设置你的语气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分钟修修补补。



Answer 3:

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

// 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();
});


Answer 4:

这里是我的解决方案(利用几以上),使得使用BS3自身的结构来复权的旧远程加载行为。 它应该是无缝的。

我要保持代码的可变重和描述让事情变得可以理解的。 我也假设JQuery的存在。 沉重的Javascript升降机类型将轻而易举地精简代码。

仅供参考下面是调用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;
}

只是为了REFFERENCE我会包括模态的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 -->


Answer 5:

我这样做:

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


Answer 6:

虽然我不喜欢修改引导代码(使得升级更困难),你可以简单地添加” .find(‘模态体’)负载声明modal.js如下:

// 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)


Answer 7:

下面是我使用的方法。 它不需要在页面上任何隐藏的DOM元素,并且只需要与模态部分的href,以及一类“modalTrigger”的锚标记。 当模态被关闭(隐藏)将其从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>


Answer 8:

另一个伟大的和简单的方法就是在你的布局态,如果neccessary调用它。

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')和内容被显示模式的内



Answer 9:

我做这种方式:

<!-- 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>

这里是我的A 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>


文章来源: Bootstrap 3 with remote Modal