Capture close event on Bootstrap Modal

后端 未结 6 2009
轮回少年
轮回少年 2021-02-01 11:52

I have a Bootstrap Modal to select events. If the user clicks on the X button or outside the modal, I would like to send them to the default event. How can I capture these event

6条回答
  •  一生所求
    2021-02-01 12:27

    This is very similar to another stackoverflow article, Bind a function to Twitter Bootstrap Modal Close. Assuming you are using some version of Bootstap v3 or v4, you can do something like the following:

    $("#myModal").on("hidden.bs.modal", function () {
        // put your default event here
    });
    

提交回复
热议问题