showModalDialog

운영자 | 기사입력 2006/12/06 [03:20]
>
필자의 다른기사 보기 인쇄하기 메일로 보내기 글자 크게 글자 작게
showModalDialog
 
운영자   기사입력  2006/12/06 [03:20]
<script>
function fnRandom(iModifier){
   return parseInt(Math.random()*iModifier);
}
function fnSetValues(){
   var iHeight=oForm.oHeight.options[
      oForm.oHeight.selectedIndex].text;
   if(iHeight.indexOf("Random")>-1){
      iHeight=fnRandom(document.body.clientHeight);
   }
   var sFeatures="dialogHeight: " + iHeight + "px;";
   return sFeatures;
}
function fnOpen(){
   var sFeatures=fnSetValues();
   window.showModalDialog("showModalDialog_target.htm", "", 
      sFeatures)
}
</script>

<form name=oForm>
Dialog Height <select name="oHeight">
   <option>-- Random --
   <option>150
   <option>200
   <option>250
   <option>300
</select>

Create Modal Dialog Box
<input type="button" value="Push To Create" 
   onclick="fnOpen()">
</form>
 
 
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/showmodaldialog.asp
트위터 트위터 페이스북 페이스북 카카오톡 카카오톡
기사입력: 2006/12/06 [03:20]  최종편집: ⓒ iwav