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.
如何从 iframe 内部链接到另一个选项卡?当我通常从 iframe 内部链接时,它会为您提供
你必须使用javascript吗?如果是这样,你会怎么做?
示例(第二个轮播图片): http ://www.facebook.com/pages/New-York-Life-DFW/116752861740593?sk=app_208195102528120
我会使用target="_top"以防 Facebook(或您)决定将整个内容包装在另一个框架中。
target="_top"
我相信您可以通过将链接的目标设置为“_parent”来做到这一点
即这将是您的 iframe 中的链接:
<a href="http://www.facebook.com/some-other-tab" target="_parent">Go to another tab</a>