Twitter Bootstrap: How to close modal dialog?

放肆的年华 提交于 2019-12-22 01:27:34

问题


I'm trying to implement modal loading dialog with Twitter's bootstrap. My current attemp is:

$(document).ready(function () {

    $('#loading_dialog')
        .ajaxStart(function () {
            $(this).modal('show');
        })
        .ajaxStop(function () {
            $(this).modal('hide');
        });
});

Problem is that the dialog won't close.


回答1:


I didn't test it but the issue could depend on the context of the ajaxStart/Stop anonymous function.

Can you try this?

var loading_dialog = $('#loading_dialog');
loading_dialog
    .ajaxStart(function () {
        loading_dialog.modal('show');
    })
    .ajaxStop(function () {
        loading_dialog.modal('hide');
});


来源:https://stackoverflow.com/questions/10944302/twitter-bootstrap-how-to-close-modal-dialog

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!