window.open
Language/JAVASCRIPT 2010. 10. 28. 10:59window.open("주소","팝업창이름","속성값");
속성 이름
설명
값
toolbar
도구 모음 표시 여부를 결정한다.
yes / no
menubar
메뉴 표시 여부를 결정한다.
yes / no
status
상태 표시줄 표시 여부를 결정한다.
yes / no
location
주소 입력줄 표시 여부를 결정한다.
yes / no
scrollbars
스크롤바 표시 여부를 결정한다.
yes / no
resizable
window 크기 조절 가능 여부를 결정한다.
yes / no
top
화면상에 열리는 Y 좌표값을 결정한다.
(숫자값)
left
화면상에 열리는 X 좌표값을 결정한다.
(숫자값)
width
화면상에 열리는 window의 폭을 결정한다.
(숫자값)
height
화면상에 열리는 window의 높이를 결정한다.
(숫자값)
[팝업창
예제]
<html>
<head></head>
<script language="JavaScript">
function popup(){
var width = "700";
var height = "300";
LeftPosition=(screen.width)?(screen.width-width)/2:100;
TopPosition=(screen.height)?(screen.height-height)/2:100;
url =
"D:/test/popup.html";
winOpts="scrollbars=no,toolbar=no,location=no,directories=no,width="+width+",height="+height+",resizable=no,mebar=no,left="+LeftPosition+",top="+TopPosition;
var obj = window.open(url,'popup', winOpts);
}
</script>
<body>
<a href="Javascript:popup();">test팝업
</a>
</body>
</html>
[출처] 팝업 window.open|작성자 munimaro
'Language > JAVASCRIPT' 카테고리의 다른 글
내용 복사 하기 (0) | 2010.11.24 |
---|---|
자바스크립트 - charAt, indexOf, substring의 차이점 (0) | 2010.11.19 |
문자 치환, 정규식, str.replace (0) | 2010.10.27 |
history(), find(), setTimeout(), clearTimeout(), setIntervalTime(), moveBy(), moveTo(), resizeBy(), resizeTo(), scrollBy(), stop() (0) | 2010.10.13 |
부모창 리로드시 경고 메시지 없애기 (0) | 2010.10.12 |