how to destroy bootstrap modal window completely?

后端 未结 24 730
旧时难觅i
旧时难觅i 2020-11-29 18:51

I\'ve made use of modal window for a wizard implementation which has around 4,5 steps. I need to destroy it completely after the last step(

24条回答
  •  有刺的猬
    2020-11-29 19:06

    If you have an iframe in your modal, you can remove its content by the following code:

    $('#myModal').on('hidden.bs.modal', function(){
       $(this).find('iframe').html("");
       $(this).find('iframe').attr("src", "");
    });
    

提交回复
热议问题