72

新しい Twitter Bootstrap リリース : bootstrap 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 -->

誰でもこの簡単な例を機能させることができますか?

4

9 に答える 9

29

ブートストラップ 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 分間いじくり回す時間を節約できることを願っています。

于 2014-01-25T14:35:42.957 に答える
14

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

もうすぐそこです。あなたがやりたいことの1つは、長いコンテンツがスクロールできるように、最大​​高さでモーダルボディをスタイルすることです.

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 -->
于 2014-03-08T02:33:47.100 に答える
9

これは私がしました:

$('#myModal').on 'shown.bs.modal', (e) ->  
  $(e.target).find('.modal-body').load('http://yourserver.com/content')
于 2014-01-07T03:17:30.477 に答える
8

Bootstrap コードを変更するのは嫌いですが (アップグレードが難しくなります)、次のように modal.js の load ステートメントに ".find('.modal-body') を追加するだけです。

// 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)
于 2013-09-03T18:26:12.383 に答える
5

もう 1 つの優れた簡単な方法は、レイアウトにブラインドモーダルを配置し、必要に応じて呼び出すことです。

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')でコンテンツがモーダル内に表示されます

于 2016-11-23T08:11:43.133 に答える
5

これが私が使用する方法です。ページに非表示の 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>
于 2015-07-22T08:44:30.573 に答える
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>

ここに私の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>
于 2016-08-22T15:05:04.377 に答える