通过 facebook iframe 内的 javascript 重定向
我需要在 Facebook 应用程序内部重定向,然后重定向回第一页。这一切都发生在 Facebook 页面内,我需要解决 Facebook 的 iframe 解决方案。我发现我需要以某种方式使用 top.location
。我不知道怎么办。
编辑:我有一个 Facebook 应用程序。我希望用户访问一个链接,然后返回当前页面。由于这是在 facebook 的 iframe 内部,因此很难通过简单的重定向来实现。
I need to redirect inside a facebook application and then redirect back to the first page. This is all occuring within that facebook page and i need to tackle the facebook's iframe solution. I see that i will need to use top.location
somehow. I cant figure out how.
EDIT: I have a facebook application. There is a link I want the user to go to and then come back on the current page. Since this is inside facebook's iframe, its hard to achieve through simple redirection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没什么特别的。使用简单的锚标记将用户带到另一个页面:
并使用 javascript 将他带回:
仅此而已!
Nothing special. Use simple anchor tag to take user to another page:
And to take him back use javascript:
That's all!