码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2014-06-18 09:16:40      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   ext   color   get   width   strong   

父页面处理:

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();
}

 

解决chrome浏览器无法得到window.showModalDialog返回值的问题,布布扣,bubuko.com

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

标签:style   ext   color   get   width   strong   

原文地址:http://www.cnblogs.com/c-y-across-I/p/3793313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!