window.open을 사용해서 hidden으로 선언한 iframe안에 띄우기

300x250

<!--팝업오픈하는 페이지-->

<script type="text/javascript">

 

function checkUrl() {
 var form = document.form;
 var winObj = null;
 
 var theUrl = "popup.jsp";//팝업창 호출할 페이지 이름
 var winName = "urlCheck";//iframe의 name이다.
 var features = "width=0 height=0 menubar=no status=no"; //이건 뭐 대충...
 
 winObj = window.open(theUrl,winName,features);
}

 

</script>

<!--form 안에 넣었다-->
<iframe name=urlCheck width=10 height=10 frameborder=1
marginheight=0 marginwidth=0 scrolling=auto style=visible:false></iframe>

300x250

댓글()