unction fnPopup() {
var popupOption = 'directories=no, toolbar=no, location=no, menubar=no, status=no, scrollbars=no, resizable=no, left=400, top=200, width=440, height=550';
window.open(URL, name, popupOption);
}
function fnClose() {
window.opener.location.href = URL;
window.close();
}
참고 :
http://www.w3schools.com/jsref/met_win_open.asp
http://hangaebal.blogspot.kr/2014/11/javascript-popup-window-open-and-close.html
'Blogger 이사' 카테고리의 다른 글
[php] 기본 페이징 코드 (0) | 2016.04.04 |
---|---|
[MyBatis] parametertype string test (There is no getter for property named 'xxxx' in 'class java.lang.String') (0) | 2016.04.04 |
[RegExp] Non-breaking space (char code 160) replace (0) | 2016.04.04 |
[Oracle] VARCHAR 필드 숫자로 정렬 (0) | 2016.04.04 |
[Spring] Spring @responsebody 한글 깨짐 (0) | 2016.04.04 |