twitter-bootstrap – Bootstrap 3与远程Modal

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – Bootstrap 3与远程Modal前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚开始一个新的项目与新的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 -->

谁能让这个简单的例子工作?

解决方法

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

If a remote URL is provided,content will be loaded via jQuery’s load
method and injected into the root of the modal element.

这意味着你的远程文件应该提供完整的模态结构,而不只是你想要显示在正文上。

Bootstrap 3.1更新:

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

Demo fiddle

Boostrap 3.3更新:

This option is deprecated since v3.3.0 and has been removed in v4. We recommend instead using client-side templating or a data binding framework,or calling 07002 yourself.

原文链接:https://www.f2er.com/bootstrap/234789.html

猜你在找的Bootstrap相关文章