<html>
<head>
<script>
window.open('http://www.naver.com','testwin','width=800,height=600');
function close_pop()
{
try{
if (/MSIE/.test(navigator.userAgent)) {
if(navigator.appVersion.indexOf("MSIE 7.0")>=0) {
//IE7에서는 아래와 같이
window.open('about:blank','testwin').close();
}
else {
//IE7이 아닌 경우
window.opener = testwin;
testwin.close();
}
} else {
window.name = '__t__';
var w = window.open('about:blank');
w.document.open();
w.document.write('<html><body><script
type="text/javascript">function _(){var
w=window.open("about:blank","'+window.name+'");w.close();self.close();}</'+'script></body></html>');
w.document.close();
w._();
}
}catch(ex){
alert(ex.name+":"+ex.message);
}
}
</script>
</head>
<body onUnload="javascript: close_pop();">
</body>
</html>
'프로그래밍' 카테고리의 다른 글
[Python] 유닉스 타임 (0) | 2016.08.06 |
---|---|
[PHP] IF 문법 (0) | 2014.11.08 |
DataTables (table plugin for jQuery) 2. API (0) | 2014.06.26 |
DataTables (table plugin for jQuery) 1. 기본 Usage (0) | 2014.06.26 |
[ClassicASP] UTF-8 ↔ euc-kr 변환 escape / encodeURI / encodeURIComponent (0) | 2013.11.13 |