0

我正在使用 Twitter Bootstrap 并调用模态弹出窗口。效果很好。我想添加调用新/更改页面的功能。我会使用 JS 还是可以添加到 href 中?

<a data-toggle="modal" data-gallery="dining-room" href="#galleryModal">
4

1 回答 1

3

而不是 href="#galleryModal",将其指向实际的远程 URL。

<a data-toggle="modal" data-gallery="dining-room" 
  href="yourRemoteURL" data-target="#modal-Container">

也试试这个:

HTML:

<a href="yourRemoteURL" id="clicker" role="button" class="btn">Clicker</a>
<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>

JS:

$(function () {
    var $modal = $('#modal');
    $('#clicker').on('click', function (e) { /** Call the modal manually */
        e.preventDefault();
        var url = $(this).attr('href');
        $modal.html('<iframe width="100%" height="100%" frameborder="0" scrolling="no" allowtransparency="true" src="' + url + '"></iframe>');
        $modal.modal({
            show: true
        });
    });


    $modal.on('hide', function () {
        $modal.empty() /** Clean up */
    });
});

JSFiddle:http: //jsfiddle.net/Cp3WY/

于 2013-01-18T04:31:22.673 回答