Bootstrap modal hide is not working

后端 未结 20 1339
温柔的废话
温柔的废话 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 08:50

    In the java script code you need to add one line of code

    $("#savechanges").on("click", function (e) {
            $("#userModal").modal("hide");
            e.stopPropagation(); //This line would take care of it
        });
    

提交回复
热议问题