0
<html>
<title>iframe_test</title>
<head>
</head>
<body>
<iframe src="test_page_with_links.html" width="whatever" height="whatever" /></iframe>
</body>
</html>

我试图找出一种方法让人们可以将 iframe 添加到他们自己的网站中添加额外的导航链接,但是如果我尝试从 iframe 中将 window.top.location 更改为假设 /profile,浏览器转到包含 iframe /profile 的网站,而不是 iframe 位于 /profile 的网站 - 希望这是有道理的

4

2 回答 2

0

为您的 iframe 命名,并为链接指定与该名称匹配的目标。

<iframe src="whatever.html" name="my_frame">

<a href="http://www.somewhere.com" target="my_frame">
于 2012-10-24T16:51:42.900 回答
0

将 target="_top" 添加到您的链接

<a href="profile.htm" target="_top"></a>
于 2012-10-24T17:21:06.407 回答