PHP & Others

showModalDialog 에 대한 자료입니다.(모달 창)

페이지 정보

본문

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();
}
}

관련자료

등록된 댓글이 없습니다.
Today's proverb
전깃불이 나간 어두운 방안에서 초가 있으면서도 초를 아끼느라 켜지 않는다면 어떻게 될까. 마찬가지로 한두 마디의 상냥한 말이면 상대방의 마음을 밝게 해 주고 유쾌한 분위기를 만들 수 있는데 그러지 않는다면 그것은 마치 초를 아끼기 위해 어둠 속에 있는 것과 같다. (T. 제퍼슨)