• 解决在Chrome下无法获取showModalDialog返回值的问题


    今天发送的bug,正常情况下用IE和FF测试showModalDialog方法,在子页面将处理的结果赋值给window.returnValue,关闭子页面,在父页面可以通过var result=window.showModalDialog(…)获取到结果。

    但chrome下result是undefine。

    解决的办法就是,在设置返回结果时,也为window.opener.returnValue赋值。

     1: //父页面调用showModalDialog
     2: var result = window.showModelDialog(....);
     3:  
     4: //for chrome
     5: if(!result)
     6: {
     7:  result=window.returnValue;
     8: }
     9:  
     10: if(result)
     11: {
     12:  //IE/FF/CHROME都可以正常使用result
     13: }
     14:  
     15:  
     16:  
     17: //子页面
     18: var resultObj = {Pass:true};
     19: if(window.opener)
     20: {
     21:  window.opener.returnValue=resultObj;
     22: }
     23: window.returnValue=resultObj;
  • 相关阅读:
    数据库基本概念
    Python语言特性之5:自省
    Python语言特性之4:类变量和实例变量
    Python语言特性之3:@staticmethod和@classmethod
    Python语言特性之2:元类
    Python语言特性之1:函数参数传递
    基础数学与算法学习
    推荐系统资料
    MySQL相关
    Python科学计算包模块的安装(ubuntu)
  • 原文地址:https://www.cnblogs.com/ricksun/p/2768374.html
Copyright © 2020-2023  润新知