4

我使用了以下语法

$('#modal').on('shown.bs.modal', function(event){
    alert('some');
});

但不知道是什么原因它只是不起作用..

我使用相反的代码

$('#modal').on('hidden.bs.modal', function(event){
    alert('some');
});

我工作就好。。

4

1 回答 1

8

参考这个拉取请求(看起来这是一个错误)

将第 907行中的这一行bootstrap.js从:

that.$element.find('.modal-dialog') // wait for modal to slide in

至:

that.$element // wait for modal to slide in
于 2013-10-09T01:48:53.680 回答