Capture close event on Bootstrap Modal

后端 未结 6 2147
轮回少年
轮回少年 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:29

    I tried using it and didn't work, guess it's just the modal versioin.

    Although, it worked as this:

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

    Just to update the answer =)

提交回复
热议问题