如何使用预定义函数关闭 JQuery 对话框?

How can I close a JQuery dialog using a pre-defined function?

我想在执行以下功能后关闭对话框:

function decide(category, choice, price, bool) {
  data.push([category, choice, price, earn]);
}

我试过 JQuery 的 close method。如指南所述,我将其设置为对话框的“特征”。有人知道如何设置对话框在触发上述功能后关闭吗?

非常感谢您给我的任何反馈或建议!!! :)

考虑以下因素。

function decide(category, choice, price, bool) {
  data.push([category, choice, price, earn]);
  $(selector).dialog("close");
}

您只需调用 close 方法即可。 $(selector) 需要更改以表示 Dialog 初始化时所基于的正确元素。