showModalDialog 에 대한 자료입니다.(모달 창)
컨텐츠 정보
- 17,631 조회
- 5 추천
- 목록
본문
showModalDialog 에 대한 자료입니다...
일단 확인해 보시구...필요하심 다운로드 하심됩니다..
공부하다가...자료가 보여서 여기 올립니다.
확인 해 보실 url은 아래....
http://www.sarubia.info/exe/modal_mother.htm
-----------------------------------------------------------
대화상자의 크기를 변경하려고 할때..dialogWidth:'+width+' 이런식으로는
function popup(check, page, name, w, h, scroll) {
var win= null;
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/3;
var settings = '';
if ( check == 'modal') {
settings ='dialogHeight: '+h+'px;';
settings +='dialogWidth: '+w+'px;';
settings +='dialogTop: '+wint+'px;';
settings +='dialogLeft: '+winl+'px;';
settings +='scrollbars: '+scroll+';';
settings +='resizable: no;';
settings +='status: no; help: no';
showModalDialog(page,name,settings);
} else {
settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=no,';
settings +='status=no';
win=window.open(page,name,settings);
if(parseInt(navigator.appVersion) >= 4) win.window.focus();
}
}
일단 확인해 보시구...필요하심 다운로드 하심됩니다..
공부하다가...자료가 보여서 여기 올립니다.
확인 해 보실 url은 아래....
http://www.sarubia.info/exe/modal_mother.htm
-----------------------------------------------------------
대화상자의 크기를 변경하려고 할때..dialogWidth:'+width+' 이런식으로는
function popup(check, page, name, w, h, scroll) {
var win= null;
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/3;
var settings = '';
if ( check == 'modal') {
settings ='dialogHeight: '+h+'px;';
settings +='dialogWidth: '+w+'px;';
settings +='dialogTop: '+wint+'px;';
settings +='dialogLeft: '+winl+'px;';
settings +='scrollbars: '+scroll+';';
settings +='resizable: no;';
settings +='status: no; help: no';
showModalDialog(page,name,settings);
} else {
settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=no,';
settings +='status=no';
win=window.open(page,name,settings);
if(parseInt(navigator.appVersion) >= 4) win.window.focus();
}
}
관련자료
댓글 0
등록된 댓글이 없습니다.