본문 바로가기
프로그램개발/ClientSide(JavaScript,Angular,Vue)

IE7, IE8에서 창 닫을때 메세지 없이 닫기

by 크레도스 2013. 4. 18.

아래 기술 내용을 적용하면 IE에서는 큰 문제가 없다.

if (/MSIE/.test(navigator.userAgent)) { 
    if(navigator.appVersion.indexOf("MSIE 7.0")>=0 || navigator.appVersion.indexOf("MSIE 8.0")>=0) { 
        window.open('about:blank','_self').close(); 
    }else { 
        window.close(); 
    }
}

혹여 iframe 안에서 parent창을 닫으려고 하시면 위의 window 앞에 parent.만 붙이시면
됩니다.

오늘도 좋은 하루 보내세요.