첫화면 육아교육 웹디자인 요리메모 한자쓰기
팝업을 띄운 후 기존 창을 닫을 때 확인메시지가 뜨는 경우 안 뜨게 할 때
window.close(); 를 아래와 같이 수정하면 됩니다.
window.opener='nothing';
window.open('','_parent','');
window.close();
or
window.open('','_self').close();