在包含iframe的窗口中打开链接,其中链接已启动

时间:2013-05-08 16:36:08

标签: html iframe hyperlink

我有一个包含我构建的网页的iframe。我在框架中有一个链接,当我点击链接时,它会打开iframe中的链接。如何制作链接以便在我的主窗口中打开?

1 个答案:

答案 0 :(得分:0)

如果您希望iframe中的所有链接都打开到父框架中,请将以下标记添加到html文档的头部:

<base target="_parent">

See documentation for base tag。)

否则,只需将target="_parent"属性添加到要在父框架中打开的链接。 (See documentation for target attribute of a tag。)

在任何一种情况下,如果没有父框架/上下文,_parent的行为就像_self