13

根据文档:

http://getbootstrap.com/javascript/#modals

它应该触发“show.bs.dropdown”和“shown.bs.dropdown”方法。但它没有:

http://jsfiddle.net/mQunq/3/

HTML:

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">Hello world</div>
    </div>
</div>

jQuery:

// show.bs.modal doesn't work either

$('#myModal')
    .modal('show')
    .on('show.bs.modal', function() {

        alert('shown baby!');

    });
4

8 回答 8

32

你需要先注册事件然后触发它

$('#myModal')
    .on('show.bs.modal', function() {

        alert('shown baby!');

    }).modal('show');

jsfiddle

于 2013-10-29T15:54:25.323 回答
11

当它发生时

当 modal 还具有“fade”类时,不会触发显示的事件.bs.modal。而show .bs.modal 总是有效的。见 https://github.com/twbs/bootstrap/issues/11793

HTML:

<div class="modal fade" id="first" tabindex="-1" role="dialog" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">Hello world from first modal</div>
    </div>
</div>
<div class="modal" id="second" tabindex="-1" role="dialog" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">Hello world from second modal</div>
    </div>
</div>

jQuery:

$('.modal').on('shown.bs.modal', function() {
    //fired only in second modal
    console.info('shown.bs.modal');
});

$('.modal').on('show.bs.modal', function() {
    //fired always
    console.info('show.bs.modal');
});


解决方案

对于引导 v3.3.6,将第 1010 行替换为:

that.$element // wait for modal to slide in

问题是什么

查看第 1006-1015 行:

  var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })

  transition ?
    that.$dialog // wait for modal to slide in
      .one('bsTransitionEnd', function () {
        that.$element.trigger('focus').trigger(e)
      })
      .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
    that.$element.trigger('focus').trigger(e)

如果没有过渡(没有淡入淡出类),事件e会立即触发(在 that.$element 上)。对于过渡,我不确定究竟是为什么,但不知何故,来自函数emulateTransitionEnd的bsTransationEnd事件不是由that.$dialog.one()处理的。但是有了that.$element,一切似乎都奏效了。

于 2016-06-03T09:13:52.857 回答
3

类似的事情发生在我身上,我已经使用 setTimeout 解决了。

Bootstrap 使用以下超时来完成显示:

c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,

所以使用超过 300 必须工作,对我来说 200 工作:

$('#myModal').on('show.bs.modal', function (e) {
    setTimeout(function(){
        //Do something if necessary
    }, 300);                        
})
于 2014-11-06T16:12:55.863 回答
1

you forgot the "n" on shown

$(document).ready(function(){
    $('#myModal')
.modal('show')
.on('shown.bs.modal', function() {

    alert('shown baby!');

});

});
于 2013-10-29T15:55:50.030 回答
1

使用文档而不是您的自定义选择器。shown.bs.modal 和 show.bs.modal 都可以正常工作

$(document).on('shown.bs.modal', '.modal', function() {
    alert();
});
于 2017-05-15T21:55:20.627 回答
1

万一有人偶然发现这个问题,请确保在触发模态之前hidden挂钩 on /shown事件。也就是说,声明这个:toggle

$("#selector").on("hidden.bs.modal", function () {
    // do the right thing
});     

在调用模态的切换之前,例如:

("#selector").modal("toggle");

我知道这是基本的,但是在复杂的代码中它会发生。

于 2017-08-09T14:31:07.603 回答
0

我找到了一个适用于.fade转换的解决方案:

$(document).on($.support.transition.end, '.modal.fade.in', function(e) {
  var $target = $(e.target);
  if ($(e.target).is(".modal-dialog")) {
    console.log("Modal Shown")
  }
});

$(document).on($.support.transition.end, '.modal.fade', function(e) {
  var $target = $(e.target);
  if (!$target.is(".modal.fade.in") && !$target.is(".modal-dialog")) {
    console.log("Modal Hidden")
  }
});
于 2017-11-13T04:37:29.570 回答
0

如果您的模态是动态创建的,请选择最近的静态父元素并将您的模态添加为引导模态事件工作的参数:

/* body is static, .modal is not */

$("body").on('shown.bs.modal', '.modal', function() {

    alert('shown');

});


$("body").on('hidden.bs.modal', '.modal', function() {

    alert('hidden');

});


$("body").on('show.bs.modal', '.modal', function() {

    alert('show');

});


$("body").on('hide.bs.modal', '.modal', function() {

    alert('hide');

});
于 2018-07-24T19:08:41.823 回答