我试图在关闭对话框时触发回调,我无法从开发人员工具/ 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');
}
});
我从控制台得到没有错误,我搜索过但似乎没有人遇到同样的问题。
如果需要,我会显示更多代码。