2011-01-19 80 views

回答

0

document.setLocation('url');

3

如果你正在使用FBJS那麼它的document.setLocation('http://example.com');

如果您使用的是iframe應用程序,然後用JavaScript是window.top.location.href = 'http://example.com';

和一個錨標記:

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

如果您不關心瀏覽器地址欄更改,並且只有iframe被重定向然後你可以使用標準鏈接和JavaScript。

相關問題