我正在尝试在对话框关闭时使fire回调,并且无法从开发人员工具/ firebug对其进行调试。在beforeclose标签之后定义的代码永远不会执行:

$(".dialog").dialog({
    autoOpen: false,
    modal: true,
    width: 300,
    beforeclose: function(event, ui)
    {
        // :input select all buttons, selects, textarea, checkbox
        $(':input').removeAttr('checked').removeAttr('selected');
    }
});

我没有从控制台收到任何错误,并且进行了搜索,但似乎没有人遇到同样的问题。

如果需要,我将显示更多代码。

最佳答案

我不确定是否区分大小写,但在API中是:

beforeClose

资源:
API

10-08 06:57