我有一个包含我构建的网页的iframe。我在框架中有一个链接,当我点击链接时,它会打开iframe中的链接。如何制作链接以便在我的主窗口中打开?
答案 0 :(得分:0)
如果您希望iframe中的所有链接都打开到父框架中,请将以下标记添加到html文档的头部:
<base target="_parent">
(See documentation for base
tag。)
否则,只需将target="_parent"
属性添加到要在父框架中打开的链接。 (See documentation for target
attribute of a
tag。)
在任何一种情况下,如果没有父框架/上下文,_parent
的行为就像_self
。