开发者

How to redirect to another page in a Facebook application?

开发者 https://www.devze.com 2023-02-05 16:42 出处:网络
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\');

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

精彩评论

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