자바스크립트 새창 띄우기 총 정리
All=no location=yes directories=yes resizable=yes status=yes toolbar=yes memubar=yes All=yes
위의 예제는 각각 다른 옵션을 준겁니다.
소스 중 window.open의 내용이 있는 곳은 줄을 바꾸지 말고 한 줄에 다 넣으세요.
클릭했을 때 새창 열기
<a href='#' onclick="window.open('문서경로','window','location=no, directories=no,resizable=no,status=no,toolbar=no,menubar=no, width=300,height=400,left=0, top=0, scrollbars=yes');return false">클릭</a>
들어올 때 새창 열기
<script language="JavaScript">
function notice() {
window.open('문서경로','','location=no, directories=no,resizable=no,status=no,toolbar=no,menubar=no, width=300,height=400,left=0, top=0, scrollbars=no'); }
</script>
<body onLoad="notice()">
나갈 때 새창 열기
<script language="JavaScript">
function notice() {
window.open('문서경로','','location=no, directories=no,resizable=no,status=no,toolbar=no,menubar=no, width=300,height=400,left=0, top=0, scrollbars=no'); }
</script>
<body onUnLoad="notice()">
location : 주소표시줄
directoryies : 연결
resizable : 크기조절
staus : 상태표시줄
toolbar : 표시단추
memubar : 메뉴
width : 새창 너비
height : 새창 높이
left : 새창 왼쪽 위치
top : 새창 위쪽 위치
yes와 no대신 1과 0을 사용해도 됩니다.
yes=1
no=0
[출처] 자바스크립트 새창 띄우기 총 정리 |작성자 빼빼로
'홈페이지 제작 > 드림위버&블로그&컴퓨터' 카테고리의 다른 글
스크롤바 색상 변환~~<티스토리적용> (0) | 2010.04.26 |
---|---|
티스토리 daum view 추천 박스의 오류 ㅡㅡ;;; (0) | 2010.04.26 |
티스토리 내에 자유게시판 쓰기~~ (0) | 2010.04.26 |
[HTML]새창 열 때 메뉴, 주소표시줄 없애기 (0) | 2010.04.25 |
음악위젯 블로그에 달아보기~~~<펌> (0) | 2010.04.23 |