ブートストラップ 2.3.2 を使用しています。http://getbootstrap.com/2.3.2/javascript.html#modalsによると 、data-remote URL が指定されている場合、URL のコンテンツが .modal-body に挿入されます。
私のindex.html:
<a data-remote="remote.php" data-target="#myModal" data-toggle="modal">Launch demo modal</a>
<!-- Modal -->
<div id="myModal" class="modal hide fade" 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 Test Header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
remote.php
<div>remote content goes here</div>
これは、リモート コンテンツがここにあることを意味し、modal-body に挿入されて置き換えられます
綺麗な体一つ…
ただし、 #myModel 全体を remote.html に保存できるかどうかは疑問です。#myModal を index.html から取り出して、remote.php に入れます。私はそれを試しましたが、うまくいきません。