当我使用关闭模式对话框时,如何将我的主页重定向到另一个网页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
不工作。