2010-06-29 19 views
0

我有一個iframe,它鏈接到pictures.html和在此頁上我有鏈接 但當我點擊鏈接它改變了ifame頁有反正我可以改變主頁使用jQuery或什麼的?iframe更改主頁jQuery或HTML

回答

3

您可以使用target="_top"改變首頁的位置:

<a href="page.html" target="_top">change main page location</a> 

_parent改變父頁的位置

<a href="page.html" target="_parent">change parent page location</a> 
0

你不需要jQuery,你可以做這個常規的javascript。

在您的iFrame:

<a href="#" onclick='window.parent.location="www.newurl.com"' /> 
0

你可能會對pict​​ures.html鏈接有發送位置的父窗口的onclick事件。

$(".link").click(function() { 
    window.parent.location = $(this).attr('href'); 
    return false; 
}); 
0

,你可以在一個新的窗口或標籤頁中打開鏈接....

The HTML to open a new window: 
     <a href=」http://sitename.com」 target="_blank">Link text here</a>