Bootstrap modal: close current, open new

前端 未结 27 1746
离开以前
离开以前 2020-11-29 00:23

I have looked for a while, but I can\'t find a solution for this. I want the following:

  • Open an URL inside a Bootstrap modal. I have this working off course. S
27条回答
  •  醉话见心
    2020-11-29 01:05

    With BootStrap 3, you can try this:-

    var visible_modal = jQuery('.modal.in').attr('id'); // modalID or undefined
    if (visible_modal) { // modal is active
        jQuery('#' + visible_modal).modal('hide'); // close modal
    }
    

    Tested to work with: http://getbootstrap.com/javascript/#modals (click on "Launch Demo Modal" first).

提交回复
热议问题