showModalDialog is not defined 的解决方案

Posted pansidong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了showModalDialog is not defined 的解决方案相关的知识,希望对你有一定的参考价值。


首先得知道window.showModalDialog()方法到底是干嘛的,有什么作用.


基本介绍:
????????? showModalDialog()???????? (IE 4+ 支持)
????????? showModelessDialog()????? (IE 5+ 支持)
????????? window.showModalDialog()????????????????? 方法用来创建一个显示html内容的模态对话框。
????????? window.showModelessDialog()???????????? 方法用来创建一个显示HTML内容的非模态对话框。
使用方法:
????????? vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
????????? vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])
参数说明:
???????? sURL??????????--??必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
???????? vArguments??? --?可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过?

??????????????????????????window.dialogArguments来取得传递进来的参数。
???????? sFeatures?????--?可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
----------------
1.??? dialogHeight:??? 对话框高度,不小于100px
2.??? dialogWidth:??? 对话框宽度。
3.??? dialogLeft:???? 离屏幕左的距离。
4.??? dialogTop:???? 离屏幕上的距离。
5.??? center:????????? { yes | no | 1 | 0 } :????????????? 是否居中,默认yes,但仍可以指定高度和宽度。
6.??? help:???????????? {yes | no | 1 | 0 }:??????????????? 是否显示帮助按钮,默认yes。
7.??? resizable:?????? {yes | no | 1 | 0 } [IE5+]:???? 是否可被改变大小。默认no。
8.??? status:????????? {yes | no | 1 | 0 } [IE5+]:????? 是否显示状态栏。默认为yes[ Modeless]或no[Modal]。
9.??? scroll:??????????? { yes | no | 1 | 0 | on | off }:是否显示滚动条。默认为yes。

以上内容来自于http://www.cnblogs.com/Dlonghow/archive/2009/06/04/1496141.html


然后发现在谷歌,火狐浏览器根本都弹不出来模态对话框,按F12打开调试器发现window.showModalDialog()在这两个浏览器中是根本没有定义的.

解决方法:


$(function(){
    if(window.showModalDialog == undefined){
        //alert("初始化的时候,判断window.showModalDialog是否存在")
        window.showModalDialog = function(url,mixedVar,features){
            window.hasOpenWindow = true;
            if(mixedVar) var mixedVar = mixedVar;
            if(features) var features = features.replace(/(dialog)|(px)/ig,"").replace(/;/g,‘,‘).replace(/:/g,"=");
            window.myNewWindow = window.open(url,"_blank",features);
        }
    }
});


一加载页面的时候,我们就判断这个方法是否是undefined未定义的,如果是,我们给window.showModalDialog()重新赋予新的函数.
原来的写法不变

var returnValue =window.showModalDialog(url,window,"dialogHeight:800px;dialogWidth:800px;center:yes");
子窗口的写法


//选择优惠券
function chooseCoupon(id) {
    var couponName =$(‘#‘+id).val();
    var val={id: id,name:couponName};
    if (window.opener != undefined) {
        //for chrome
        window.opener.returnValue = val;
    }
    else {
        window.returnValue = val;
    }
    //调用父窗口方法
    opener.fuzhi(val);
    window.close();

}

然后遇到打开子窗口的时候就给returnValue赋值,不统一.所以这边换了opener.fuzhi()写法,调用了父类fuzhi的函数,让我们得到的返回值做剩下的业务操作.
————————————————
版权声明:本文为CSDN博主「Java_wucao」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Java_wucao/article/details/78401525

以上是关于showModalDialog is not defined 的解决方案的主要内容,如果未能解决你的问题,请参考以下文章

问题与解决showModalDialog is not defined 的解决方案

window.showModalDialog 在谷歌Uncaught TypeError: undefined is not a function

Hbase 错误 is not online on master

实力踩坑:Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedde

解决 c3p0报错 Establishing SSL connection without server's identity verification is not recommended

Android应用程序打包时,出现错误:"XXX" is not translated in "af" (Afrikaans), "am&quo(示例