새창 띄우기 다른 것, 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}}
    -
목록형 📷 갤러리형
제목
[기본형] HTML (with 부트스트랩5.3 , jquery 3.7, vue.js)
유용한 리눅스(LINUX) 명령어
[공지] 기술 게시판
2.25
2.27
2.28
3.1
3.2
3.3
3.4
3.5
3.7
3.9
3.11
3.12
3.13
3.14
3.15
3.16
3.17
3.18
3.19
3.20
3.21
3.22
3.23
3.24
3.25
3.27
3.28
3.29
3.30
3.31
4.1
4.2
4.3
4.4
4.5
4.6