Programming/JAVA,JSP
window.open('xxxx.html', 'modal') close
TanSanC
2019. 3. 6. 00:53
let modal = window.open('xxxx.html', 'modal')
modal.open("about:blank","_self").close();
window 를 open 으로 팝업시
parent window 에서 강제로
다시 window 를 open 하면
child window 가 닫긴다.