Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一个徽标,当单击它时,我需要它来将用户引导回 facebook 上的页面。
<a href="https://www.facebook.com/company.com" id="logo" target="_self"><img src="images/company_logo.png"></a>
但这只是给用户一个白屏。
那么为什么常规 URL 不起作用,它需要怎样才能让它起作用呢?
因为您的应用程序位于 iframe 中,所以您需要将最顶层的框架重定向到 URL。您当前的方法只会在 iframe 内执行重定向。要重定向最顶层的框架,您必须将target属性更改为_top:
target
_top
<a href="SOME_URL" id="logo" target="_top">...</a>