JavaScript 웹사이트에서 빠져나갈때 추가 HTML창 띄우기
페이지 정보
본문
홈페이지 보다가 나갈때 새창으로 HTML 페이지 열기
## page.html ##
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>해피정닷컴 ( https://www.happyjung.com )</title>
</head>
<frameset rows="*,0" frameborder="no" border="0" framespacing="0">
<frame src="page.html" name="mainFrame" id="mainFrame">
<frame src="blank.html" scrolling="No" noresize="noresize">
</frameset>
<noframes>
<body>
<a href="page.html">여기를 누르시면 본문을 보실수 있습니다.</a>
</body>
</noframes>
</html>
## page.html ##
<html>
<head>
<title>해피정닷컴</title>
</head>
<body>
홈페이지
</body>
</html>
## blank.html ## 나갈때 작동될 HTML
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
function leave() {
window.open('page_pop.html','','location=no, directories=no, resizable=no, status=no, toolbar=no, menubar=no, windth=300, height=400, left=0, top=0, scrollbars=no');
}
//-->
</script>
</head>
<body onunload="leave()">
</body>
</html>
## page_pop.html ## 나갈때 보이고자 하는 HTML
<html>
<head>
<title>새창입니다.</title>
</head>
<body>
새창에서 보이는 내용
</body>
</html>
웹브라우저의 팝업차단 기능이 작동할 경우 새창이 열리지 않음 -_-
참고자료
http://blog.naver.com/happyyhj?Redirect=Log&logNo=49946285
http://www.coolsoft2.com/?mid=web_6&document_srl=59756
http://sun77.com/cgi/technote/read.cgi?board=jabang5&y_number=50
http://thiskorea.tistory.com/entry/사이트에서-빠져나갈때-즐겨찾기-추가창-띄우기
## page.html ##
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>해피정닷컴 ( https://www.happyjung.com )</title>
</head>
<frameset rows="*,0" frameborder="no" border="0" framespacing="0">
<frame src="page.html" name="mainFrame" id="mainFrame">
<frame src="blank.html" scrolling="No" noresize="noresize">
</frameset>
<noframes>
<body>
<a href="page.html">여기를 누르시면 본문을 보실수 있습니다.</a>
</body>
</noframes>
</html>
## page.html ##
<html>
<head>
<title>해피정닷컴</title>
</head>
<body>
홈페이지
</body>
</html>
## blank.html ## 나갈때 작동될 HTML
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
function leave() {
window.open('page_pop.html','','location=no, directories=no, resizable=no, status=no, toolbar=no, menubar=no, windth=300, height=400, left=0, top=0, scrollbars=no');
}
//-->
</script>
</head>
<body onunload="leave()">
</body>
</html>
## page_pop.html ## 나갈때 보이고자 하는 HTML
<html>
<head>
<title>새창입니다.</title>
</head>
<body>
새창에서 보이는 내용
</body>
</html>
웹브라우저의 팝업차단 기능이 작동할 경우 새창이 열리지 않음 -_-
참고자료
http://blog.naver.com/happyyhj?Redirect=Log&logNo=49946285
http://www.coolsoft2.com/?mid=web_6&document_srl=59756
http://sun77.com/cgi/technote/read.cgi?board=jabang5&y_number=50
http://thiskorea.tistory.com/entry/사이트에서-빠져나갈때-즐겨찾기-추가창-띄우기
댓글목록
등록된 댓글이 없습니다.