[JS] 새창을 열어서 이미지 보기, 닫기 지원

[JS] 새창을 열어서 이미지 보기, 닫기 지원

 

function window_open_v2(url,name , width, height)
{
 // 줌으로 보기
 var toolbar =0;
 var menubar =0;
 var statusbar =0;
 var scrollbar =1;
 var resizable =1;
 var left_x = (screen.width-width)/2;
    var top_y = (screen.height-height)/3;
 var winHandle = window_open2(url,name , width, height, left_x, top_y, toolbar, menubar, statusbar, scrollbar, resizable);
 //--------=-=-
  if(winHandle != null){
 var htmlString = "<html><head><title>Picture</title></head>"
 htmlString += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"
 htmlString += "<a href=javascript:window.close()><img src=" + url + " border=0 alt=닫기></a>"
 htmlString += "</body></html>"
 winHandle.document.open()
 winHandle.document.write(htmlString)
 winHandle.document.close()
 }
 if(winHandle != null) winHandle.focus();
 //return winHandle
 return;
}
function window_open2(url,name , width, height, left, top, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  w_result = window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
 return w_result;
}

댓글
  • No Nickname
    No Comment
  • 권한이 없습니다.
    {{m_row.m_nick}}
    -
제목 작성자 날짜
공대여자
공대여자
mins01
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자