带有ajax微调器的弹出窗口,用于twitter bootstrap

时间:2013-02-20 04:45:10

标签: ajax twitter-bootstrap

在twitter bootstrap中是否有带ajax微调器的标准弹出窗口?虽然它应该是,但我还没有发现任何相关内容。

2 个答案:

答案 0 :(得分:6)

这对我使用Font Awesome进行Ajax调用(在接受的答案中推荐)并稍微调整一下模式样式对我有用:

<!-- CSS -->
<style>
    #spinner-modal .modal-dialog,
    #spinner-modal .modal-content,
    #spinner-modal .modal-body {
        background: transparent;
        color: rgba(255,255,255,1);
        box-shadow: none;
        border: none;
    }
</style>

<!--[ SPINNER MODAL ]-->
<div class="modal fade" id="spinner-modal">
    <div class="modal-dialog modal-sm">
        <div class="modal-content">
            <div class="modal-body text-center">
                <h3><i class="fa fa-cog fa-spin"></i> Working...</h3>
            </div>
        </div>
    </div>
</div>

<!--[ JS ]-->
<script>
        $('#search-form-input').autocomplete({
            source: '/search.php',
            minLength: 2,
            select: function(event, ui) {
                $('#spinner-modal').modal('show');
                var url = '/a/results/index.php?i=' + ui.item.item_id;
                window.location.href = url;
            }
        });
</script>

答案 1 :(得分:2)

您可以使用bootstrap模式插件http://twitter.github.com/bootstrap/javascript.html#modals在弹出窗口中加载ajax内容。

没有使用微调器的引导方式,但是在显示模式弹出窗口之前,您可以自己动手。