[팝업] window.open 속성 사용 예제

반응형

<HEAD>
<script language="javascript">
/*
window.open(url:String, name:String, properties:String)
open 함수는 반드시 3개의 매개변수가 있고, 매개변수 순서는 지겨야 함.
name은 팝업창의 이름, 주로 프레임 문서의 Target으로 사용
name은 사용하지 않으려면 " " 만 표시해줍니다. 반드시 표시해야 함.
*/
function win() {
window.open("http://www.AspBoy.net", "", "");
}
function menu_win() {
window.open("http://www.AspBoy.net", "", "menubar=1");
}
function channel_win() {
window.open("http://www.AspBoy.net", "", "channelmode");
}
function toolbar_win() {
window.open("http://www.AspBoy.net", "", "width=400, height=300, toolbar=0");
}
function status_win() {
window.open("http://www.AspBoy.net", "", "width=400, height=300, status=1");
}
function popup_win1() {
window.open("http://www.AspBoy.net", "", "width=400, height=300");
}
function popup_win2() {
window.open("http://www.AspBoy.net", "", "width=400, height=300, left=500, top=400");
}
function popup_win3() {
window.open("http://www.AspBoy.net","","width=400,height=300,left=100,scrollbars=1");
}
function popup_win4() {
window.open("http://www.AspBoy.net", "", "width=400, height=300, left=100, location=1");
}
</script>
</HEAD>

<BODY>
<input type="button" value="속성 지정하지 않은 기본 창" onClick="win()">
<input type="button" value="메뉴바 없는 팝업" onClick="menu_win()">
<input type="button" value="채널모드 팝업" onClick="channel_win()">
<input type="button" value="툴바 없는 팝업" onClick="toolbar_win()">
<input type="button" value="상태표시바 있는 팝업" onClick="status_win()">
<input type="button" value="크기 width400 height300 팝업창" onClick="popup_win1()">
<input type="button" value="위치 left=500, top=400 팝업창" onClick="popup_win2()">
<input type="button" value="스크롤바 있는 팝업" onClick="popup_win3()">
<input type="button" value="주소 입력 표시줄 있는 팝업" onClick="popup_win4()">
</BODY>

=======================================

 

[출처] flashboy.biz

반응형

댓글()