ShowModalDialog关闭时重定向父窗体

时间:2011-05-24 01:56:56

标签: javascript showmodaldialog

当我使用showModalDialog关闭模态对话框时,如何将主页面重定向到其他网页?

我在这里关闭表单的代码:

function Msg() 
{ 
    parent.window.opener.location.href = 'MyRequirements.aspx'; 
    window.close();  
} 

这是打开模态对话框的代码:

function Go()
{
    var model= document.getElementById("cboModel").value;
    var variant= document.getElementById("cboVariant").value;
    var color = document.getElementById("cboColor").value;
    var code = document.getElementById("txtCode").value;
    window.showModalDialog("MesgeBox.aspx?model=" + model +
        "&variant=" + variant + "&color=" + color + "&code=" + code +
        "","","dialogHeight: 100px; dialogWidth: 80px; edge: Raised;help: No; resizable: No; status: No; center: Yes; scrollbars: No;")
}

opener.location无效。

1 个答案:

答案 0 :(得分:1)

自从我使用showModalDialog以来已经有很长一段时间了,但是假设您要重定向到的URL是可变的并且需要从子模式对话框设置,我认为这样的事情应该有效:

// Msg() is on child dialog
function Msg()  {
    window.returnValue = 'MyRequirements.aspx';
    window.close();
}

// Go() is on parent window
function Go() {
   // your intialisation
   var newLocation = window.showModalDialog(/*your params*/);
   if (newLocation != "")
      window.location.href = newLocation;
} 

有关详细信息,请参阅returnValueshowModalDialog()的在线doco。