我有一个 jQuery UI 对话框,里面有一个表单。我正在尝试实现一个功能,如果表单中的字段已被修改,我们将使用noty显示确认消息
现在,与 javaScript 确认框不同,noty 不会停止脚本执行。所以,在对话beforeClose
事件中,我——
如果表单数据被修改然后返回 false,则显示通知确认。如果表单数据没有被修改,则简单地返回 true 。
一切运作良好。现在我们问用户——
表格中的数据已被修改。您确定要关闭吗?
如果他点击否- 我们只需关闭通知并保持对话框打开。但是,如果他单击yes,我们会尝试关闭对话框,这会再次触发beforeClose
事件处理程序并再次进入循环。
.off
在调用 close 事件之前,我尝试调用div
已转换为对话框的,但这似乎并没有删除点击。
这是一个简单的伪代码来解释这个问题 -
DialogCloseEvent() {
if data has been modified {
Show noty {
// IMPORTANT - This is executed after return false.
in noty user clicks NO - do not close dialog box {
close noty and done
}
in noty user clicks YES - close the dialog box {
// This calls the DialogCloseEvent again.
call the close method of the dialog box.
close noty
}
}
return false
}
no it has not been modifed {
// Closes the dialog without calling the event again
return true;
}
}