Bootstrap modal: close current, open new

前端 未结 27 1681
离开以前
离开以前 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:21

    I had the same issue as @Gravity Grave whereby scrolling doesn't work if you use

    data-toggle="modal" data-target="TARGET-2" 
    

    in conjunction with

    data-dismiss="modal"
    

    The scroll doesn't work correctly and reverts to scrolling the page rather than the modal. This is due to data-dismiss removing the modal-open class from the tag.

    My solution in the end was to set the html of the inner component on the modal and use css to fade the text in/out.

提交回复
热议问题