从弹出窗口更改父窗口位置

时间:2012-07-21 08:06:17

标签: html popup window

我正在尝试建立一些网站,并想问一些问题。 该网站的主要文件是main.asp。 在main.asp中,我将notice.jpg文件作为弹出窗口插入。

我想这样做,如果我点击弹出窗口,弹出窗口就会消失,新的大窗口(www.charming.or.kr/jeju/)会显示出来。 谁可以帮我这个事? 以下是我来源的一部分。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title><!--#include file="../include/title.asp"--></title>
<style type="text/css">
@import url(../css/comm.css);
</style>
<script language='javascript'> 
function OpenWin(dest) 
{ 
posy = screen.Height/2 - 100; 
posx = screen.Width /2 - 200; 

StartWin = window.open(dest, 
"notice_popup","toolbar=no,channelmode=no,left="+posx+",top="+posy+",location=no,directories=no,w    idth=743,height=720,resizable=no,menubar=no,scroll=no"); 
} 


</script> 

</head>

<body onload="OpenWin('../img/main/Notice.jpg')" > 

1 个答案:

答案 0 :(得分:2)

在新窗口中,您可以使用window.opener来引用原始窗口,window.opener.location.href = newURL; 是对原始内容的直接引用。你可以这样使用

{{1}}