링크를 클릭할 때 새창 띄우기
자바스크립트 이용
<a href="javascript:void(window.open('주소','팝업이름','width=가로,height=세로'))">Link</a>
온클릭(onClick) 이용
<a href="#" onClick="window.open('주소','팝업이름','width=가로,height=세로');return false">Link</a>
버튼을 클릭할때 새창 띄우기
<input type="button" value="JSGUIDE" onClick="window.open'주소','팝업이름','width=가로,height=세로')">
페이지 로딩이 완료되면 새창 띄우기
<BODY onLoad="window.open('주소','팝업이름','width=가로,height=세로')">
무조건 새창 띄우기
<script langauge="javascript">
window.open("주소","팝업이름","width=가로,height=세로");
</script>
몇초 후에 새창 띄우기
<script langauge="javascript">
setTimeout("window.open('주소','팝업이름','width=가로,height=세로')",5000); //1000 = 1초
</script>
설정
location=no, directories=no, resizable=no, status=no, toolbar=no, menubar=no, width=300, height=400, left=0, top=0, scrollbars=yes
'컴퓨터 > 언어,프로그래밍' 카테고리의 다른 글
[C#] 예외처리 (try, catch, finally) (0) | 2012.09.11 |
---|---|
[C#] 프로세스 죽이기 (Process Kill) (0) | 2012.09.11 |
[C# 반복문] foreach문 (0) | 2012.09.11 |
[본문스크랩] 비주얼 C++ 6.0과 .Net의 차이에 대해서 (1) | 2012.09.11 |
[스크랩] C# 사용 팁 모음 (0) | 2012.09.11 |