博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决chrome浏览器无法得到window.showModalDialog返回值的问题
阅读量:6541 次
发布时间:2019-06-24

本文共 723 字,大约阅读时间需要 2 分钟。

父页面处理:

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=returnvalues;
   }

   else{//解决chrome浏览器无法得到window.showModalDialog返回值的问题

      window.document.getElementById("test").value=window.returnValue;

   }

}

子页面处理:

 

function Button_Submit_onclick()

{
    if (window.opener != undefined) {
       //解决chrome浏览器无法得到window.showModalDialog返回值的问题
       window.opener.returnValue ="opener returnValue";
    }
    else {
       window.returnValue="window returnValue";
    }
    window.close();
}

 

转载于:https://www.cnblogs.com/c-y-across-I/p/3793313.html

你可能感兴趣的文章
Python的函数参数传递:传值?引用?
查看>>
[转]分享2011年8个最新的jQuery Mobile在线教程
查看>>
android call require api level
查看>>
SQLSERVER是怎麽通过索引和统计信息来找到目标数据的(第一篇)
查看>>
Python版本切换和Pip安装
查看>>
SilverLigth学习笔记--控制 Silverlight控件样式(转)
查看>>
poj3262
查看>>
第四十天笔记
查看>>
4、动态代理
查看>>
Loj #6073.「2017 山东一轮集训 Day5」距离
查看>>
我的TCP/IP学习笔记
查看>>
轮毂电机光电增量编码器的ABZ信号详解
查看>>
洛谷——P1330 封锁阳光大学
查看>>
css选择器
查看>>
linux系统配置之bash shell的配置(centos)
查看>>
linux C 9*9
查看>>
python的string操作总结
查看>>
如何把word中的图片怎么导出来呢?
查看>>
CMD指令大全
查看>>
Qt多线程学习:创建多线程
查看>>