1

我正在尝试制作一些网站,并想问一些问题。该网站的主文件是 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')" > 
4

1 回答 1

2

在您的新窗口中,您可以通过使用window.openerwhich is a direct reference to your original 来引用您的原始窗口。您可以因此使用

window.opener.location.href = newURL;
于 2012-07-21T08:17:52.760 回答