Twitter Bootstrap: How to close modal dialog?

2019-04-18 06:20发布

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条回答
老娘就宠你
2楼-- · 2019-04-18 06:28

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');
});
查看更多
登录 后发表回答