지금 보고 있는 웹페이지 창을 닫으려고 합니다." 안나타나게 하기

by 조쉬 posted Feb 27, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

function selfClose()
{
if (navigator.appVersion.indexOf("MSIE 7.0") >= 0)
{
window.open("blank.html", "_self").close();
}
else if (navigator.appVersion.indexOf("MSIE 8.0") >= 0)
{
window.open("blank.html", "_self").close();
} else
{
self.close();
}
}