Bootstrap modal hide is not working

后端 未结 20 1326
温柔的废话
温柔的废话 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:05

    Try this function

    function hideModal(){
        $("#myModal").removeClass("in");
        $(".modal-backdrop").remove();
        $("#myModal").hide();
    }
    

提交回复
热议问题