TypeError: window.showModalDialog is not a function 错误表明你尝试调用的 window.showModalDialog 方法在当前的浏览器环境中不存在或不可用。这通常是因为该方法已被废弃或不被当前浏览器支持。 2. window.showModalDialog 方法已被废弃的情况 window.showModalDialog 是一个较老的JavaScript方法,用于显示一个模态对话框...
为什么会出现window.showModalDialog is not a function 函数没写错,原来在chorme 37以后,谷歌就已经把这个函数停用了,把停用的showModalDialog改成window.open就可以打开子窗体了,360极速模式下也停用了这个。 同样的在子窗口操作源窗口的dialogArguments方法也不能用了。这个改为window.opener就可以了。记住不要拼写错误。
//新版本谷歌没有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,"")...
按F12打开调试器发现window.showModalDialog()这个函数没有定义。 解决方法: 1 2 3 4 5 6 7 8 9 10 11 $(function(){ if(window.showModalDialog == undefined){ //alert("初始化的时候,判断window.showModalDialog是否存在") window.showModalDialog = function(url,mixedVar,features){ window.hasOpenWindow ...
为什么会出现window.showModalDialog is not a function 函数没写错,原来在chorme 37以后,谷歌就已经把这个函数停用了,把停用的showModalDialog改成window.open就可以打开子窗体了,360极速模式下也停用了这个。 同样的在子窗口操作源窗口的dialogArguments方法也不能用了。这个改为window.opener就可以了。记住不要拼写错误。
showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog() 方 法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog() 方 法用来创建一个显示HTML内容的非模态对话框。 使用方法: vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures]) ...
Uncaught TypeError: window.showModalDialog is not a function,原来在chorme37以后,谷歌就已经把这个函数停用了,把停用的showModalDialog改成window.open就可以打开子窗体了。
if(window.showModalDialog == undefined){ window.showModalDialog =function(url,mixedVar,features){ window.hasOpenWindow=true;if(mixedVar)varmixedVar =mixedVar;if(features)varfeatures = features.replace(/(dialog)|(px)/ig,"").replace(/;/g,',').replace(/\:/g,"="); ...
window.showModalDialog 在谷歌Uncaught TypeError: undefined is not a function if(navigator.userAgent.indexOf("Chrome") >0 ){var winOption = "height="+height+",width="+width+",top=50,left=50,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,fullscreen=0...