ホームページを作ろうと思っているのですが、質問させてください。Web サイトのメイン ファイルは 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')" >