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

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

时间:2018-10-12 11:00:19      阅读:643      评论:0      收藏:0      [点我收藏+]

标签:一个   新版本   .sh   tail   文章   arguments   浏览器   UNC   log   

//新版本谷歌没有window.showModalDialog,创建一个window.open
if(window.showModalDialog == undefined){ 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);
} }

在使用回调的时候
var parent;
//谷歌的情况下
if (window.opener != undefined) { parent=window.opener;
}
else {
parent=window.dialogArguments;
}

只要当谷歌浏览器使用window.showModalDialog未定义的时候
---------------------
作者:rendeyishi
来源:CSDN
原文:https://blog.csdn.net/rendeyishi/article/details/53892611?utm_source=copy
版权声明:本文为博主原创文章,转载请附上博文链接!

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

标签:一个   新版本   .sh   tail   文章   arguments   浏览器   UNC   log   

原文地址:https://www.cnblogs.com/asdyzh/p/9776158.html

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