팝업창 닫을 때, 현재 페이지 새로고침을 하기위해, onbeforeunload 이벤트를 사용했다.
onveforeunload 이벤트란,
사용자의 페이지에서 벗어날 때, 즉 뒤로가기나 팝업창을 닫을 때 일어나는 이벤트인 것 같다.
function create_baby_profile() {
var popup = window.open('/profile/create', '네이버팝업', 'width=700px,height=700px,scrollbars=yes');
popup.onbeforeunload=function (){
window.location.reload();
}
}
*참고
https://jaimemin.tistory.com/1539
https://doolyit.tistory.com/205
'JavaScript' 카테고리의 다른 글
[Jquery] Flask 쿠키 삭제 removeCookie - jwt 로그아웃 [Jquery Plugin] (0) | 2021.10.19 |
---|---|
[Jquery] 자바스크립트 이미지 파일 업로드 시 미리보기 제공하기 (0) | 2021.10.19 |
[jquery] toggleCalss - html 클래스 값 제어 (0) | 2021.10.08 |
[javascript & jquery] attr() 사용법 (0) | 2021.09.28 |
모달창 안에 카카오 맵 불러오기 (동적 웹페이지 로딩) (0) | 2021.09.28 |