如何在用户关闭Fancybox对话框时重新加载当前页面?
答案 0 :(得分:5)
使用fancybox
onClosed
处理程序;
$('#some_element').fancybox({
onClosed: function() {
window.location.reload();
}
});
答案 1 :(得分:0)
请使用" afterClose"处理程序。 Example
$(".fancybox").fancybox(
{
afterClose: function()
{
window.location.reload();
}
});