팝업창 차단 "허용 메시지"

by 조쉬 posted Sep 28, 2018
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
function pop_show() {  
    var winAddr;  
    winAddr = window.open("a.php", "팝업", "width=600px, height=600px, top=200px, left=200px, scrollbars=yes, status=no");  
    if (!winAddr) alert("팝업이 차된되었습니다. 팝업을 허용해 주시기 바랍니다.");  
    else winAddr.focus();  
}