곽로그
[JavaScript] 크롬에서 현재 페이지 안닫힐 때 본문
반응형
오류 : Scripts may close only the windows that were opened by them.
해결코드
setTimeout("WinClose();", 3000)
function WinClose(){
top.window.open('http://www.naver.com?','_self').close();
top.window.opener=self;
top.self.close();
}
급해서 일단 복붙했는데, 원인이랑 위의 코드는 끝나면 다시 정리!
반응형
Comments