首页 > 代码库 > 解决chrome浏览器无法得到window.showModalDialog返回值的问题
解决chrome浏览器无法得到window.showModalDialog返回值的问题
父页面处理:
function ProductList()
{
var TypeID = window.document.getElementById("Type").value;
var returnvalues = window.showModalDialog(‘ProductList.aspx?Type=‘ + TypeID,‘window‘,‘dialogWidth=700px;dialogHeight=680px‘);
if(returnvalues!=undefined){
window.document.getElementById("test").value=http://www.mamicode.com/returnvalues;
}
else{//解决chrome浏览器无法得到window.showModalDialog返回值的问题
window.document.getElementById("test").value=http://www.mamicode.com/window.returnValue;
}
}
子页面处理:
function Button_Submit_onclick()
{
if (window.opener != undefined) {
//解决chrome浏览器无法得到window.showModalDialog返回值的问题
window.opener.returnValue ="http://www.mamicode.com/opener returnValue";
}
else {
window.returnValue="http://www.mamicode.com/window returnValue";
}
window.close();
}