对话框 close 事件接收参数 event 和 ui ,没有像您尝试使用的数据。
close
event
ui
如果您使用了设置数据 data-timestamp 属性然后你可以在close事件中访问它,如下所示:
data-timestamp
close: function(){ console.log( $(this).data('timestamp') ); }