HTML iFrame中的链接无法在父窗口中打开

时间:2014-03-08 17:13:24

标签: html iframe hyperlink

我在HTML中有一个iframe,但iframe中的iframe链接在iframe中打开。我尝试添加 target =“_ parent”,但仍会在iFrame中打开hyperlick。

<iframe src="misc.php?page=UnitedStatesMap" target="_parent" frameborder="0"></iframe>

我对StackOverFlow和HTML一般都是新手。所以这可能是一个非常愚蠢的问题。对不起,但我无法理解这一点。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

目标需要放在iframe中的HTML页面的头部。 IE iframe页面应该有:

<head>
 <base target="_blank">
</head>

See here for more

如果您希望页面上的链接在iFrame中打开,您可以执行something like

 <iframe src="demo_iframe.htm" name="iframe_a"></iframe>
 <p><a href="http://www.w3schools.com" target="iframe_a">W3Schools.com</a></p> 

据我所知,我不认为可以通过iFrame属性控制链接的打开位置。