我使用Twitter's Bootstrap.的模态
您可以通过单击按钮或标签为data-dismiss="modal"
的其他内容来关闭模式。
我想用AJAX处理我的表单(通过点击提交按钮),然后关闭模态。
那么如何在AJAX中关闭这个模态呢?
或者那是不可能的?
(抱歉我的英语不好......)
答案 0 :(得分:16)
如果您在文档中进一步阅读:
$('#myModal').modal('hide')
只需获取模态的ID,然后将myModal
替换为它。然后将它放在AJAX成功处理程序中,然后就可以了。
答案 1 :(得分:4)
您可以使用此脚本关闭模式
<button type="button" id="close_btn" class="close" data-dismiss="modal" aria-hidden="true">
<i class = "icons-office-52"></i>
</button>
$("#close_btn").trigger("click");
或
$('#my_model').modal('hide');
答案 2 :(得分:0)
经过多次试验和比较,然后比较了在HTML前后的效果,
$('body').removeAttr("style");
$("#myModal").removeAttr("style");
$(".modal-backdrop").remove();