336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

안녕하세요.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
    window.onload = function(){
    
        window.open("http://jdkblog.tistory.com","프로그래밍 블로그","width=400,height=500");
        //window.open("URL주소","제목","옵션이 들어갈곳");
 
        //옵션
 
        //- fullscreen = 전체 창. (yes/no)(default : no) 
        //- location = 주소창이 활성화. (yes/no)(default : yes) 
        //- menubar = 메뉴바 visible. (yes/no)(default : yes) 
        //- titlebar = 타이틀바. (yes/no)(default : yes) 
        //- toolbar = 툴바. (yes/no)(default : yes) 
        //- resizable = 창 사이즈 변경. (yes/no)(default : yes) 
        //- scrollbars = 스크롤바. (yes/no)(default : yes) 
        //- width = 창 가로 크기 
        //- height = 창 세로 크기 
    }
</script>
cs

 

감사합니다.

+ Recent posts