Bootstrap模态插件加载不显示

时间:2013-08-26 08:24:27

标签: jquery twitter-bootstrap bootstrap-modal

我已经绞尽脑汁几个小时了,我无法弄清楚为什么bootstrap模式在使用它的ajax功能时不会从.on事件中显示加载屏幕。 $('body')。modalmanager('loading');如果我把它放在.on事件之外,我会知道脚本是否正常工作。但是当它在on事件中时,就像在插件示例中一样,我什么都没得到。有什么建议吗?

我正在使用以下代码绑定点击事件:

    $.fn.modalmanager.defaults.resize = true;
    $.fn.modalmanager.defaults.spinner = '<div class="loading-spinner fade" style="width: 200px; margin-left: -100px;"><img src="http://localhost:2621/assets/img/ajax-modal-loading.gif" align="middle">&nbsp;<span style="font-weight:300; color: #eee; font-size: 18px; font-family:Open Sans;">&nbsp;Loading...</div>';

var $modal = $('#add-offense');

$('.add-offense-btn').on('click', function () {
    // create the backdrop and wait for next modal to be triggered
    // THIS IS NEVER CALLED INSIDE THE .on EVENT
    $('body').modalmanager('loading');

    var url = "/case/saveoffense/"; // the url to the controller

    setTimeout(function () {
        $modal.load(url, '', function () {

            $modal.modal().on("hidden", function () {
                $modal.empty();
            });
            $modal.modal();
        })
    }, 1000);
});

除了bootstrap.js之外,我还包括下面的最新bootstrap-modal文件:

<script src="@Url.Content("~/assets/plugins/bootstrap-modal/js/bootstrap-modal.js")" type="text/javascript" ></script>
<script src="@Url.Content("~/assets/plugins/bootstrap-modal/js/bootstrap-modalmanager.js")" type="text/javascript" ></script>

1 个答案:

答案 0 :(得分:-1)

查看标签;使用而不是href =''