클릭했을때 팝업창 + 팝업창 옵션

개발/실전 2014. 3. 27. 14:40

  <td bgcolor="ffffff" style="padding-right:2px; text-align:center"><a href="javascript:click();">LGU플러스</a></td>

<script>
 function click()
 {
  window.open('/item/kch6.jsp','child','width=2000','height=1500',true);
 }
</script>

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

 팝업창 옵션 종료(yes나 no로 지정)

toolbar = 상단 도구창 출력 여부 
menubar = 상단 메뉴 출력 여부
location = 메뉴아이콘 출력 여부
directories = 제목 표시줄 출력 여부
status = 하단의 상태바 출력 여부
scrollbars = 스크롤바 사용 여부
resizable = 팝업창의 사이즈 변경 가능 여부

사이즈 정의(픽셀 px)
width = 팝업창의 가로 길이 설정
height = 팝업창의 세로 길이 설정
top = 팝업창이 뜨는 위치(화면 위에서부터의 거리 지정)
left = 팝업창이 뜨는 위치(화면 왼쪽에서부터의 거리 지정)

var options = {
      height: 300,    
      width: 300,          
      toolbar: 0,     
      scrollbars: 0,  
      status: 0,      
      resizable: 1,   
      left: 0,        
      top: 0,         
      center: 0,      
      createnew: 0,   
      location: 0,    
      menubar: 0      
  };

  var parameters = "location=" + options.location +
                   ",menubar=" + options.menubar +
                   ",height=" + options.height +
                   ",width=" + options.width +
                   ",toolbar=" + options.toolbar +
                   ",scrollbars=" + options.scrollbars +
                   ",status=" + options.status +
                   ",resizable=" + options.resizable +
                   ",left=" + options.left +
                   ",screenX=" + options.left +
                   ",top=" + options.top +
                   ",screenY=" + options.top;

  // target URL
  var urlAdd= 'URL 주소'

  popup = window.open(urlAdd, 'popup', parameters);  

 

'개발 > 실전' 카테고리의 다른 글

원하는 순서 문자 변경  (0) 2014.04.18
자바스크립트 현재 날짜  (0) 2014.04.07
URI 와 URL  (0) 2014.03.26
Hashmap과 ArrayList 사용법  (0) 2014.03.21
iframe, target 에 대해서[펌]  (0) 2014.03.18