关闭thickbox窗口后刷新父窗口
我使用 Thickbox 3.1 作为登录表单,使用 iframe 版本。
我想关闭 iframe(子)窗口,然后刷新父窗口。
这将关闭 iframe 窗口,但我需要以某种方式将其设置为刷新父窗口
<a href="#" onclick="self.parent.tb_remove();">Close</a>
任何帮助表示赞赏。
I am using Thickbox 3.1 for a login form, using the iframe version.
I want to close the iframe (child) window, then refresh the parent window.
This closes the iframe window, but I need to somehow set it to refresh the parent window
<a href="#" onclick="self.parent.tb_remove();">Close</a>
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请记住,无论您的页面正在做什么都不是即时的。对于我的网站,我在表(MySQL)中设置了新值,并且必须添加超时。
我必须这样做:
setTimeout(function(){parent.location.reload(1)},1000)
也对 .js 文件使用了此修改:
http://designerfoo.com/jquery -thickbox-hack-to-refresh-parent-window-on-tb_close-event.html
Bear in mind that whatever your page is doing isn't instantaneous. For my site I set new values in a table (MySQL) and I had to add a timeout.
I had to do:
setTimeout(function(){parent.location.reload(1)},1000)
Also used this modification to the .js file:
http://designerfoo.com/jquery-thickbox-hack-to-refresh-parent-window-on-tb_close-event.html
这应该可以做到:
编辑:也许应该是:
?
This should do it:
Edit: Maybe that should be:
?
尝试
对我有用
try
worked for me
怎么样:
How about: