我正在使用'Colorbox'(http://colorpowered.com/colorbox/)jQuery插件来显示模态窗口。其中一个模态窗口是登录窗口。它将外部登录页面加载到模态窗口中。
问题是当我在模态窗口中输入我的凭据并登录时,它会在窗口内正确登录。但是,当我关闭窗口时,主页面(包含登录模式窗口的链接)仍然显示陈旧的“未登录”状态。我需要刷新整个页面以查看“登录”状态。
如何在登录并关闭登录模式窗口后立即更新主页。?
答案 0 :(得分:1)
在下面的颜色框中有一个关闭的函数,你可以在onClosed函数中使用window.load函数
$(".example9").colorbox({
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
});