JQuery Fancybox - 如何在fancybox关闭时重新加载页面

时间:2012-08-12 19:27:33

标签: jquery fancybox reload

如何在用户关闭Fancybox对话框时重新加载当前页面?

2 个答案:

答案 0 :(得分:5)

使用fancybox onClosed处理程序;

$('#some_element').fancybox({
  onClosed: function() {
    window.location.reload();
  }
});

答案 1 :(得分:0)

请使用" afterClose"处理程序。 Example

$(".fancybox").fancybox(
{ 
    afterClose: function() 
    {
     window.location.reload();
    }
});