模式窗口對父窗口的引用

showModalDialog() (Internet Explorer 4 and above)
showModelessDialog() (Internet Explorer 5 and above)
vReturnValue = window.showModalDialog(sURL[, vArguments][, sFeatures]);
vReturnValue = window.showModelessDialog(sURL[, vArguments][, sFeatures]);
其中:
vArguments 是要傳到子窗口的參數;
sFeatures 指定子窗口顯示的狀太,與 window.open() 的相似;
sFeatures 所用的參數:
dialogHeight: iHeight
dialogWidth: iWidth
dialogLeft: iXPos
dialogTop: iYPos
center: {yes | no | 1 | 0 }
help: {yes | no | 1 | 0 }
resizable: {yes | no | 1 | 0 } (Internet Explorer 5 and above)
status: {yes | no | 1 | 0 } (Internet Explorer 5 and above)

 

在父窗口中打開模式窗口:

function Openersub(strUrl)
{
 var vTmd=Math.random();
 var vReturn='';
 var strFeature = 'dialogWidth:530px;dialogHeight:470px;status:0;scroll:1:0;help:0;';
 if(strUrl.indexOf('?')>-1)
 {
  vReturn=window.showModalDialog(strUrl+'&tmd='+vTmd,window,strFeature);
 }
 else
 {
  vReturn=window.showModalDialog(strUrl+'?tmd='+vTmd,window,strFeature);
 } 

}

請注意:在第二個參數使用的是window,作用相當於把當前的父窗口當作對象傳入到子窗口

在子窗口中使用父窗口的對象:window,但使用時要用dialogArguments引用父窗口對象。例如:

  dialogArguments.location='other.asp';
  window.close();

 

發佈了25 篇原創文章 · 獲贊 0 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章