通过 facebook iframe 内的 javascript 重定向

发布于 2024-12-09 11:27:40 字数 253 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸印温柔 2024-12-16 11:27:40

没什么特别的。使用简单的锚标记将用户带到另一个页面:

<a href="/next-page.html">Come here</a>

并使用 javascript 将他带回:

location.href = '/index.html';

仅此而已!

Nothing special. Use simple anchor tag to take user to another page:

<a href="/next-page.html">Come here</a>

And to take him back use javascript:

location.href = '/index.html';

That's all!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文