새창 띄우기 다른 것, window_open

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='close' ></a>"
htmlString += "</body></html>"
winHandle.document.open()
winHandle.document.write(htmlString)
winHandle.document.close()
}
if(winHandle != null) winHandle.focus();
//return winHandle
return;
}
function window_open(url,name , width, height)
{
var toolbar =0;
var menubar =0;
var statusbar =0;
var scrollbar =0;
var resizable =0;
var left_x = (screen.width-width)/2;
var top_y = (screen.height-height)/3;
window_open2(url,name , width, height, left_x, top_y, toolbar, menubar, statusbar, scrollbar, resizable);
}
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}}
    -
목록형 📅 달력형