묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
팝업창 밑에보면.. ㅁ 오늘은 더 이상 이 창을 열지 않기 <- 이건 어떻게 하나요;;?
움..또 질문.. 검색해서 못 찾게써욤 -_-;
2003.05.23 21:40
팝업창 밑에보면.. ㅁ 오늘은 더 이상 이 창을 열지 않기 <- 이건 어떻게 하나요;;?
댓글 4
-
RedEye(rinja)
2003.05.23 22:11
-
권민우
2003.05.23 23:02
어메 다시 떠버리는 뎁쇼 -_-; -
Wesley
2003.05.23 23:42
강의 게시판에 보시면 있어요 -
권민우
2003.05.24 16:41
ㄳ
[실전예제]
[ notice.html ]
<html>
<head>
<title>notice.html</title>
</head>
<body>
<SCRIPT language="JavaScript">
<!--
function setCookie( name, value, expiredays )
{
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function closeWin()
{
if ( document.test.chkbox.checked ){
setCookie( "notice", "done" ,30 );
}
self.close();
}
// -->
</SCRIPT>
<form name="test">
<p>여기에 원하시는 내용이나 메시지를 넣으세요.</p>
<INPUT TYPE=CHECKBOX NAME="chkbox"><B>하루동안 더이상 팝업창 띄우지 않기</B></font>
<input type=button value="close" onClick="closeWin();">
</form>
</body>
</html>
[ index.html ]
<html>
<head>
<title> index.html </title>
</head>
<body bgcolor="black">
<script>
window.open('notice.html','Remote','width=500,height=600');
</script>
</body>
</html>