开发者

How to redirect to another page in a Facebook application?

How do I redirect to another page in a Facebook applicat开发者_Go百科ion?


if you are using fbjs then it's document.setLocation('http://example.com');

If you are using an iframe app then with javascript it's window.top.location.href = 'http://example.com';

and for an anchor tag:

<a href="http://example.com" target="_top">Link text</a>

If you don't care about the browsers address bar changing and only the iframe being redirected then you can use standard links and javascript.


document.setLocation('url');

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜