关闭模式而不提交列表器

Close modal without commit listner

本文关键字:提交 列表 模式      更新时间:2023-09-26

我需要确定是否隐藏了引导模式,但是当其中的表单未提交时,我尝试使用:

$('#ModalID').on('hidden.bs.modal', function () {});

但即使提交完成,它也会被触发。我需要何时被取消,或在模态之外,甚至在关闭按钮中。有什么方法可以识别它吗?

试试这个,如果模式处于打开状态,警报对话框将显示 true。

alert($('#ModalID').hasClass('in'));