Bootstrap modal hide is not working

后端 未结 20 1336
温柔的废话
温柔的废话 2020-12-09 08:11

Bootstrap modal hide is not working. Alert comes in else. but my modal is not hidden Added bootply. My issue is the same one.

20条回答
  •  一整个雨季
    2020-12-09 09:02

    I had the same problem, my mistake was that I was trying to open the modal window a few times. We must test that the modal window is not already open before trying to open it.

        if (!($("#MyModal").data('bs.modal') || {})._isShown){ 
            $("#MyModal").modal('show');
        }
    

提交回复
热议问题