반응형
팝업창 열 때 Get 방식으로 열어 버리면 변수가 노출 되므로,
요런 방법을 이용하자!
function OpenPopupWithPost(code){
var f = document.form1;
f.code.value = code;
var url = http://www.tistory.com;
var w = screen.availWidth-10;
var h = screen.availHeight - 30 ;
var settings = 'height='+h+',width='+w+',top=0,left=0,status=no,resizable=no,toolbars=no,location=no,scrollbars=yes';
var popWin=window.open("","uri",settings);
f.target='uri';
f.action=url;
f.submit();
}
요런 방법을 이용하자!
function OpenPopupWithPost(code){
var f = document.form1;
f.code.value = code;
var url = http://www.tistory.com;
var w = screen.availWidth-10;
var h = screen.availHeight - 30 ;
var settings = 'height='+h+',width='+w+',top=0,left=0,status=no,resizable=no,toolbars=no,location=no,scrollbars=yes';
var popWin=window.open("","uri",settings);
f.target='uri';
f.action=url;
f.submit();
}
반응형
'DEV > Javascript' 카테고리의 다른 글
unicode 한글 변환 코드 (0) | 2011.03.18 |
---|---|
unicode 한글 변환 (0) | 2011.03.18 |
JavaScript로 윈도우 7 확인하기 (0) | 2010.05.06 |
Window 객체 (0) | 2010.04.19 |
인터넷익스플로러 버전 보기 (0) | 2010.04.08 |