还有一个问题。我有两个页面(一个主页面和一个window.open)。 Window.open有一个href链接。如果有人按下窗口中的链接,如何改变主页面的URL并转到该URL?
主页
//////////////////////////////
HTP://main.page.com
(如果在window.open中按下链接,则更改主页面URL)
/////////////////////////////
//////////////////////
window.open
a href =“#”链接
/////////////////////
答案 0 :(得分:1)
在您的主页面中,当然有那个将打开然后打开子(其他)文件的链接:
<div class="main">
<a href="#" onclick="window.open('another_file.php', 'window', 'height=200,width=200');">Open new window</a>
</div>
然后在另一个文件上:
<a href="#" onclick="redirect_parent()">Redirect Parent to google.com</a>
<script type="text/javascript">
function redirect_parent() {
window.opener.location.href = 'http://www.google.com';
self.close();
}
</script>
当然,将google.com的价值更改为您想要的其他值。