2012-10-24 174 views
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讓我們說/配置文件,瀏覽器去我的網站,這是住房的iframe /配置文件,而不是網站的iframe是/配置文件 - 希望這是有道理的我可以在iframe中更改window.top.location嗎?

+0

你想改變什麼? iframe中的內容或包含iframe的窗口內容? – udidu

+0

Iframes是不可觸及的。你不能改變任何與iframe有關的事情。 –

回答

0

添加目標= 「_頂」 到鏈接

<a href="profile.htm" target="_top"></a> 
+0

這些鏈接是在一個iframe中,我想要把該iframe放在網頁上,並讓鏈接在iframe所在的網站的域名上,而不是iframe所在的域名 – Ryan

+0

我嘗試添加target = 「_top」鏈接到iframe中的鏈接,但它們仍然會轉到iframe的網址,而不是帶有iframe的網站的網址 – Ryan

0

給你的iframe的名稱和鏈接目標匹配的名稱。

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

<a href="http://www.somewhere.com" target="my_frame"> 
相關問題